*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
:root {
--bg: #08080f;
--bg-subtle: #0e0e1a;
--bg-card: #12121e;
--bg-card-hover: #1a1a2e;
--bg-overlay: rgba(0, 0, 0, 0.8);
--bg-modal: rgba(4, 4, 12, 0.92);
--glass: rgba(255, 255, 255, 0.04);
--glass-border: rgba(255, 255, 255, 0.08);
--accent: #e04055;
--accent-soft: #ff6b81;
--accent-glow: rgba(224, 64, 85, 0.3);
--accent2: #f0a050;
--accent2-glow: rgba(240, 160, 80, 0.25);
--gradient-accent: linear-gradient(135deg, #e04055, #f0a050);
--gradient-card: linear-gradient(145deg, rgba(255,255,255,0.03) 0%, rgba(255,255,255,0) 100%);
--text: #d8d8e8;
--text-dim: #6e6e88;
--text-bright: #f4f4ff;
--border: rgba(255, 255, 255, 0.06);
--border-hover: rgba(255, 255, 255, 0.12);
--radius: 16px;
--radius-sm: 10px;
--radius-xs: 6px;
--transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
--transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
--font: 'Inter', 'Segoe UI', system-ui, -apple-system, sans-serif;
--shadow-sm: 0 2px 8px rgba(0,0,0,0.3);
--shadow-md: 0 8px 32px rgba(0,0,0,0.4);
--shadow-lg: 0 16px 64px rgba(0,0,0,0.5);
--shadow-glow: 0 0 40px var(--accent-glow);
}
html, body {
width: 100%; height: 100%;
font-family: var(--font);
background: var(--bg);
color: var(--text);
overflow-x: hidden;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}
body::before {
content: '';
position: fixed;
inset: 0;
background:
radial-gradient(ellipse 80% 50% at 50% -20%, rgba(224, 64, 85, 0.08), transparent),
radial-gradient(ellipse 60% 40% at 80% 100%, rgba(240, 160, 80, 0.05), transparent);
pointer-events: none;
z-index: 0;
}
.main-menu {
position: fixed;
inset: 0;
z-index: 9999;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
background: #050508;
overflow: hidden;
transition: opacity 0.4s cubic-bezier(.4,0,.2,1), visibility 0.4s;
}
.main-menu.hidden {
opacity: 0;
visibility: hidden;
pointer-events: none;
}
.main-menu.hidden .mm-bg__gradient,
.main-menu.hidden .mm-particle,
.main-menu.hidden .mm-sep__diamond,
.main-menu.hidden .mm-sep__diamond::after {
animation-play-state: paused;
}
.mm-bg { position: absolute; inset: 0; }
.mm-bg__gradient {
position: absolute; inset: 0;
background:
radial-gradient(ellipse 95% 70% at 50% 30%, rgba(224,64,85,0.24), transparent 65%),
radial-gradient(ellipse 70% 55% at 65% 75%, rgba(240,160,80,0.14), transparent 60%),
radial-gradient(ellipse 50% 40% at 15% 50%, rgba(180,60,120,0.11), transparent 50%),
radial-gradient(ellipse 35% 30% at 88% 18%, rgba(200,80,220,0.07), transparent 50%);
animation: bgBreath 18s ease-in-out infinite alternate;
}
@keyframes bgBreath {
0%   { opacity: 0.7; transform: scale(1); }
100% { opacity: 1;   transform: scale(1.03); }
}
.mm-bg__noise {
position: absolute; inset: 0;
background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.5' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.02'/%3E%3C/svg%3E");
opacity: 0.4;
pointer-events: none;
}
.mm-bg__vignette {
position: absolute; inset: 0;
background: radial-gradient(ellipse 70% 60% at 50% 50%, transparent 40%, rgba(0,0,0,0.7) 100%);
pointer-events: none;
}
.mm-particle {
position: absolute;
border-radius: 50%;
pointer-events: none;
animation: particleDrift linear infinite;
}
.mm-particle--1 { width: 3px; height: 3px; background: var(--accent);     top: 20%; left: 15%; animation-duration: 14s; opacity: 0.4; }
.mm-particle--2 { width: 2px; height: 2px; background: var(--accent2);    top: 60%; left: 80%; animation-duration: 18s; opacity: 0.3; animation-delay: -6s; }
.mm-particle--3 { width: 4px; height: 4px; background: var(--accent-soft); top: 75%; left: 25%; animation-duration: 16s; opacity: 0.25; animation-delay: -8s; }
@keyframes particleDrift {
0%   { transform: translateY(0) translateX(0) scale(1);   opacity: 0; }
10%  { opacity: 1; }
90%  { opacity: 1; }
100% { transform: translateY(-120px) translateX(40px) scale(0.5); opacity: 0; }
}
.mm-center {
position: relative;
z-index: 2;
display: flex;
flex-direction: column;
align-items: center;
gap: 28px;
text-align: center;
padding: 20px 28px 80px;
animation: mmFadeIn 1.2s cubic-bezier(.25,.46,.45,.94) both;
}
@keyframes mmFadeIn {
from { opacity: 0; transform: translateY(40px); }
to   { opacity: 1; transform: translateY(0); }
}
.mm-accent-line {
position: relative;
width: 130px;
height: 14px;
opacity: 0.7;
}
.mm-accent-line::before {
content: '';
position: absolute;
left: 0; right: 0;
top: 50%;
height: 1px;
background: linear-gradient(to right, transparent 0%, var(--accent-soft) 35%, var(--accent) 50%, var(--accent-soft) 65%, transparent 100%);
}
.mm-accent-line::after {
content: '';
position: absolute;
left: 50%; top: 50%;
transform: translate(-50%, -50%) rotate(45deg);
width: 5px; height: 5px;
background: var(--accent-soft);
box-shadow: 0 0 10px var(--accent-glow), 0 0 20px var(--accent-glow);
}
.mm-title-block {
display: flex;
flex-direction: column;
align-items: center;
gap: 0;
}
.mm-title-sub {
font-family: var(--font);
font-size: clamp(0.75rem, 1.8vw, 0.92rem);
font-weight: 600;
letter-spacing: 0.55em;
text-transform: uppercase;
color: var(--accent-soft);
opacity: 0.9;
text-shadow: 0 0 20px rgba(255,107,129,0.4);
animation: mmFadeIn 1.4s cubic-bezier(.25,.46,.45,.94) both;
animation-delay: 0.2s;
}
.mm-title {
position: relative;
font-family: 'Cormorant Garamond', 'Playfair Display', Georgia, serif;
font-size: clamp(5rem, 16vw, 11rem);
font-weight: 700;
font-style: italic;
line-height: 1.05;
letter-spacing: 0.01em;
margin: -0.15em 0 0;
padding: 0 0.2em 0.15em;
overflow: visible;
text-shadow:
0 2px 30px rgba(224, 64, 85, 0.55),
0 8px 60px rgba(240, 160, 80, 0.35);
animation: mmFadeIn 1.4s cubic-bezier(.25,.46,.45,.94) both;
animation-delay: 0.35s;
}
.mm-title__text {
display: inline-block;
padding: 0.05em 0.1em;
background: linear-gradient(
135deg,
#fff8f8 0%,
#ffdede 15%,
var(--accent-soft) 40%,
var(--accent) 62%,
var(--accent2) 100%
);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
}
.mm-title__shimmer {
display: none;
}
.mm-sep {
display: flex;
align-items: center;
gap: 14px;
animation: mmFadeIn 1.4s cubic-bezier(.25,.46,.45,.94) both;
animation-delay: 0.5s;
}
.mm-sep__wing {
display: block;
width: 70px;
height: 1px;
}
.mm-sep__wing--l { background: linear-gradient(to right, transparent, var(--accent)); }
.mm-sep__wing--r { background: linear-gradient(to left, transparent, var(--accent)); }
.mm-sep__diamond {
width: 8px; height: 8px;
background: var(--accent);
transform: rotate(45deg);
border-radius: 1px;
animation: diamondPulse 2.5s ease-in-out infinite;
position: relative;
}
.mm-sep__diamond::after {
content: '';
position: absolute; inset: -4px;
border-radius: 1px;
background: transparent;
box-shadow: 0 0 12px var(--accent-glow), 0 0 24px var(--accent-glow);
animation: diamondGlow 2.5s ease-in-out infinite;
}
@keyframes diamondPulse {
0%, 100% { transform: rotate(45deg) scale(1); }
50%      { transform: rotate(45deg) scale(1.15); }
}
@keyframes diamondGlow {
0%, 100% { opacity: 0.5; }
50%      { opacity: 1; }
}
.mm-buttons {
display: flex;
flex-direction: column;
align-items: center;
gap: 12px;
width: 100%;
max-width: 300px;
animation: mmFadeIn 1.4s cubic-bezier(.25,.46,.45,.94) both;
animation-delay: 0.65s;
}
.mm-btn {
position: relative;
display: flex;
align-items: center;
justify-content: center;
width: 100%;
padding: 16px 40px;
font-family: var(--font);
font-size: 1rem;
font-weight: 700;
letter-spacing: 0.12em;
text-transform: uppercase;
color: #fff;
background: transparent;
border: none;
border-radius: 50px;
cursor: pointer;
text-decoration: none;
overflow: hidden;
transition: transform 0.3s cubic-bezier(.4,0,.2,1), box-shadow 0.3s, filter 0.3s;
}
.mm-btn__glow {
position: absolute;
inset: 0;
border-radius: inherit;
background: linear-gradient(135deg, var(--accent) 0%, var(--accent2) 100%);
opacity: 0.9;
z-index: 0;
transition: opacity 0.3s;
}
.mm-btn__glow--pat {
background: linear-gradient(135deg, #ff424d 0%, #c8304a 100%);
}
.mm-btn__border {
position: absolute;
inset: 0;
border-radius: inherit;
z-index: 1;
border: 1px solid rgba(255,255,255,0.12);
pointer-events: none;
}
.mm-btn__content {
position: relative;
z-index: 2;
display: flex;
align-items: center;
justify-content: center;
gap: 10px;
}
.mm-btn--play {
box-shadow:
0 4px 25px rgba(224,64,85,0.35),
0 0 60px rgba(224,64,85,0.1);
}
.mm-btn--play:hover {
transform: translateY(-3px) scale(1.04);
filter: brightness(1.15);
box-shadow:
0 10px 50px rgba(224,64,85,0.6),
0 0 90px rgba(224,64,85,0.2);
}
.mm-btn--play:active {
transform: translateY(1px) scale(0.98);
}
.mm-btn--patreon {
box-shadow:
0 4px 25px rgba(255,66,77,0.25),
0 0 60px rgba(255,66,77,0.08);
}
.mm-btn--patreon:hover {
transform: translateY(-3px) scale(1.04);
filter: brightness(1.15);
box-shadow:
0 10px 50px rgba(255,66,77,0.55),
0 0 90px rgba(255,66,77,0.18);
}
.mm-btn--patreon:active {
transform: translateY(1px) scale(0.98);
}
.mm-btn--website {
box-shadow:
0 4px 25px rgba(80,160,255,0.25),
0 0 60px rgba(80,160,255,0.08);
}
.mm-btn--website:hover {
transform: translateY(-3px) scale(1.04);
filter: brightness(1.15);
box-shadow:
0 10px 50px rgba(80,160,255,0.55),
0 0 90px rgba(80,160,255,0.18);
}
.mm-btn--website:active {
transform: translateY(1px) scale(0.98);
}
.mm-footer {
position: absolute;
bottom: 0; left: 0; right: 0;
z-index: 3;
display: flex;
justify-content: space-between;
align-items: center;
padding: 14px 28px;
background: linear-gradient(to top, rgba(5,5,8,0.9), transparent);
}
.mm-footer__credit {
font-size: 0.7rem;
color: var(--text-dim);
letter-spacing: 0.04em;
}
.mm-footer__credit strong {
color: var(--text);
font-weight: 600;
}
.mm-footer__version {
font-size: 0.65rem;
color: var(--accent);
font-weight: 700;
letter-spacing: 0.1em;
padding: 3px 12px;
border: 1px solid rgba(224,64,85,0.3);
border-radius: 20px;
background: rgba(224,64,85,0.08);
}
@media (max-width: 480px) {
.mm-buttons { max-width: 260px; }
.mm-footer { padding: 10px 16px; }
.mm-accent-line { height: 32px; }
}
.mode-select {
position: fixed;
inset: 0;
z-index: 10000;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
background: #050508;
overflow: hidden;
transition: opacity 0.5s cubic-bezier(.4,0,.2,1), visibility 0.5s;
}
.mode-select.hidden {
opacity: 0; visibility: hidden; pointer-events: none;
}
.mode-select.hidden .mm-bg__gradient,
.mode-select.hidden .mm-particle {
animation-play-state: paused;
}
.mm-mode-heading {
font-family: 'Cormorant Garamond', 'Playfair Display', Georgia, serif;
font-size: clamp(2.2rem, 5vw, 3.6rem);
font-weight: 700;
font-style: italic;
color: #fff;
letter-spacing: 0.02em;
text-shadow: 0 0 40px rgba(224,64,85,0.4), 0 0 80px rgba(224,64,85,0.15);
}
.mm-mode-desc {
font-family: var(--font);
font-size: 0.78rem;
font-weight: 400;
color: var(--text-dim);
text-align: center;
line-height: 1.5;
letter-spacing: 0.02em;
margin: 0;
opacity: 0.8;
}
.mm-mode-desc-box {
background: var(--glass);
border: 1px solid var(--glass-border);
border-radius: var(--radius-sm);
padding: 10px 16px;
max-width: 280px;
margin-bottom: 12px;
margin-top: -4px;
}
.mm-btn--classic {
box-shadow:
0 4px 25px rgba(224,64,85,0.35),
0 0 60px rgba(224,64,85,0.1);
}
.mm-btn--classic:hover {
transform: translateY(-3px) scale(1.04);
filter: brightness(1.15);
box-shadow:
0 10px 50px rgba(224,64,85,0.6),
0 0 90px rgba(224,64,85,0.2);
}
.mm-btn--classic:active {
transform: translateY(1px) scale(0.98);
}
.mm-btn--story {
box-shadow:
0 4px 25px rgba(240,160,80,0.3),
0 0 60px rgba(240,160,80,0.08);
}
.mm-btn--story .mm-btn__glow {
background: linear-gradient(135deg, var(--accent2) 0%, #c87030 100%);
}
.mm-btn--story:hover {
transform: translateY(-3px) scale(1.04);
filter: brightness(1.15);
box-shadow:
0 10px 50px rgba(240,160,80,0.55),
0 0 90px rgba(240,160,80,0.18);
}
.mm-btn--story:active {
transform: translateY(1px) scale(0.98);
}
.mm-back-btn {
position: relative;
z-index: 2;
margin-top: 10px;
padding: 8px 22px;
font-family: var(--font);
font-size: 0.78rem;
font-weight: 600;
letter-spacing: 0.06em;
text-transform: uppercase;
color: var(--text-dim);
background: transparent;
border: 1px solid var(--border);
border-radius: 50px;
cursor: pointer;
display: flex;
align-items: center;
gap: 6px;
transition: color 0.3s, border-color 0.3s, transform 0.3s;
animation: mmFadeIn 1.4s cubic-bezier(.25,.46,.45,.94) both;
animation-delay: 1s;
}
.mm-back-btn:hover {
color: var(--text-bright);
border-color: var(--border-hover);
transform: translateY(-1px);
}
.mm-back-btn:active {
transform: translateY(0);
}
#gallery {
position: relative;
z-index: 1;
min-height: 100vh;
padding: 60px 32px 80px;
display: flex;
flex-direction: column;
align-items: center;
}
#gallery h1 {
font-size: 2.4rem;
font-weight: 800;
letter-spacing: -0.03em;
color: var(--text-bright);
margin-bottom: 10px;
text-align: center;
background: linear-gradient(135deg, var(--text-bright) 0%, var(--accent-soft) 100%);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
}
#gallery .subtitle {
color: var(--text-dim);
font-size: 1rem;
font-weight: 400;
margin-bottom: 48px;
letter-spacing: 0.01em;
}
.gallery-grid {
display: grid;
grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
gap: 28px;
width: 100%;
max-width: 1280px;
}
.gallery-card {
position: relative;
background: var(--bg-card);
border: 1px solid var(--border);
border-radius: var(--radius);
overflow: hidden;
cursor: pointer;
transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
will-change: transform;
}
.gallery-card::before {
content: '';
position: absolute;
inset: 0;
background: var(--gradient-card);
border-radius: var(--radius);
pointer-events: none;
z-index: 1;
}
.gallery-card::after {
content: '';
position: absolute;
inset: -1px;
border-radius: var(--radius);
background: linear-gradient(135deg, rgba(224,64,85,0.3), rgba(240,160,80,0.2));
opacity: 0;
transition: opacity var(--transition);
z-index: 0;
mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
mask-composite: exclude;
padding: 1px;
}
.gallery-card:hover {
transform: translateY(-6px) scale(1.01);
box-shadow: var(--shadow-lg), 0 0 60px rgba(224, 64, 85, 0.1);
border-color: transparent;
}
.gallery-card:hover::after {
opacity: 1;
}
.gallery-card .thumb {
width: 100%;
aspect-ratio: 16 / 9;
background: var(--bg-card);
display: flex;
align-items: center;
justify-content: center;
overflow: hidden;
position: relative;
margin-bottom: -2px;
}
.gallery-card .thumb::after {
content: '';
position: absolute;
bottom: -2px;
left: 0;
right: 0;
height: 50%;
background: linear-gradient(to top, var(--bg-card), transparent);
pointer-events: none;
z-index: 1;
transition: opacity var(--transition);
}
.gallery-card:hover .thumb::after {
opacity: 0;
}
.gallery-card .thumb img,
.gallery-card .thumb video {
width: 100%;
height: 100%;
object-fit: cover;
transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.gallery-card:hover .thumb img,
.gallery-card:hover .thumb video {
transform: scale(1.08);
}
.gallery-card .thumb .no-thumb {
font-size: 3.5rem;
color: var(--text-dim);
opacity: 0.5;
}
.gallery-card .card-info {
position: relative;
z-index: 2;
padding: 20px;
}
.gallery-card .card-info h3 {
font-size: 1.15rem;
font-weight: 700;
color: var(--text-bright);
margin-bottom: 8px;
letter-spacing: -0.01em;
}
.gallery-card .card-info .actors-preview {
font-size: 0.82rem;
color: var(--text-dim);
font-weight: 400;
}
.modal-overlay {
position: fixed;
inset: 0;
background: var(--bg-modal);
backdrop-filter: blur(20px) saturate(150%);
-webkit-backdrop-filter: blur(20px) saturate(150%);
display: flex;
align-items: center;
justify-content: center;
z-index: 1000;
animation: modalFadeIn 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.modal-overlay.hidden { display: none; }
#age-gate { z-index: 10005; }
#vip-modal { z-index: 10020; }
@keyframes modalFadeIn {
from { opacity: 0; backdrop-filter: blur(0px); }
to { opacity: 1; backdrop-filter: blur(20px); }
}
.modal-box {
background: var(--bg-card);
border: 1px solid var(--glass-border);
border-radius: 20px;
padding: 36px;
max-width: 540px;
width: 92%;
text-align: center;
animation: modalSlideUp 0.5s cubic-bezier(0.16, 1, 0.3, 1);
box-shadow: var(--shadow-lg), 0 0 80px rgba(224, 64, 85, 0.08);
position: relative;
overflow: hidden;
}
.modal-box::before {
content: '';
position: absolute;
top: 0;
left: 0;
right: 0;
height: 2px;
background: var(--gradient-accent);
}
@keyframes modalSlideUp {
from { transform: translateY(40px) scale(0.96); opacity: 0; }
to { transform: translateY(0) scale(1); opacity: 1; }
}
.modal-box .age-badge {
display: inline-flex;
align-items: center;
justify-content: center;
background: var(--gradient-accent);
color: #fff;
font-weight: 800;
font-size: 1.5rem;
padding: 10px 24px;
border-radius: var(--radius-sm);
margin-bottom: 20px;
box-shadow: 0 4px 20px var(--accent-glow);
letter-spacing: 0.02em;
}
.modal-box .disclaimer {
font-size: 0.82rem;
color: var(--text-dim);
line-height: 1.7;
margin-bottom: 24px;
text-align: left;
border-left: 3px solid var(--accent);
padding-left: 14px;
background: rgba(224, 64, 85, 0.04);
border-radius: 0 var(--radius-xs) var(--radius-xs) 0;
padding: 12px 14px;
}
.modal-box .credits {
text-align: left;
margin-bottom: 24px;
padding: 16px;
background: var(--glass);
border-radius: var(--radius-sm);
border: 1px solid var(--border);
}
.modal-box .credits h4 {
font-size: 0.88rem;
color: var(--text-bright);
margin-bottom: 8px;
font-weight: 600;
}
.modal-box .credits a {
color: var(--accent2);
text-decoration: none;
word-break: break-all;
font-size: 0.85rem;
transition: color var(--transition-fast);
}
.modal-box .credits a:hover {
color: var(--accent-soft);
text-decoration: underline;
}
.modal-box .credits .actors-list {
font-size: 0.85rem;
color: var(--text);
margin-top: 10px;
}
.modal-box .modal-actions {
display: flex;
gap: 14px;
justify-content: center;
margin-top: 4px;
}
.btn {
display: inline-flex;
align-items: center;
justify-content: center;
padding: 12px 30px;
border: none;
border-radius: var(--radius-sm);
font-family: var(--font);
font-size: 0.92rem;
font-weight: 600;
cursor: pointer;
transition: all var(--transition);
letter-spacing: 0.01em;
position: relative;
overflow: hidden;
}
.btn::before {
content: '';
position: absolute;
inset: 0;
background: linear-gradient(135deg, rgba(255,255,255,0.1), transparent);
opacity: 0;
transition: opacity var(--transition-fast);
}
.btn:hover::before { opacity: 1; }
.btn-primary {
background: var(--gradient-accent);
color: #fff;
box-shadow: 0 4px 16px var(--accent-glow);
}
.btn-primary:hover {
box-shadow: 0 6px 28px var(--accent-glow), var(--shadow-glow);
transform: translateY(-1px);
}
.btn-secondary {
background: var(--glass);
color: var(--text-dim);
border: 1px solid var(--glass-border);
backdrop-filter: blur(10px);
}
.btn-secondary:hover {
color: var(--text);
border-color: var(--border-hover);
background: rgba(255, 255, 255, 0.08);
}
.btn-special {
background: var(--gradient-accent);
color: #fff;
font-size: 1.1rem;
font-weight: 700;
padding: 16px 40px;
border-radius: var(--radius);
animation: specialPulse 2.5s ease-in-out infinite;
box-shadow: 0 4px 20px var(--accent-glow);
letter-spacing: 0.02em;
}
@keyframes specialPulse {
0%, 100% {
box-shadow: 0 4px 20px var(--accent-glow);
transform: scale(1);
}
50% {
box-shadow: 0 8px 40px var(--accent-glow), 0 0 60px rgba(240, 160, 80, 0.15);
transform: scale(1.03);
}
}
#viewer {
position: fixed;
inset: 0;
background: #000;
z-index: 500;
}
#viewer.hidden { display: none; }
#viewer video {
width: 100%;
height: 100%;
object-fit: contain;
display: block;
}
.viewer-overlay {
position: absolute;
inset: 0;
display: flex;
flex-direction: column;
justify-content: flex-end;
padding: 48px 48px 18px;
pointer-events: none;
background: linear-gradient(transparent 40%, rgba(0,0,0,0.3) 70%, rgba(0,0,0,0.85));
}
.viewer-overlay > * { pointer-events: auto; }
.options-row {
display: flex;
flex-wrap: wrap;
gap: 14px;
justify-content: center;
margin-bottom: 10px;
}
.option-btn {
padding: 14px 34px;
background: rgba(255, 255, 255, 0.06);
backdrop-filter: blur(16px) saturate(150%);
-webkit-backdrop-filter: blur(16px) saturate(150%);
border: 1px solid rgba(255, 255, 255, 0.12);
border-radius: var(--radius-sm);
color: var(--text-bright);
font-family: var(--font);
font-size: 1rem;
font-weight: 600;
cursor: pointer;
transition: all var(--transition);
position: relative;
overflow: hidden;
letter-spacing: 0.01em;
}
.option-btn::before {
content: '';
position: absolute;
inset: 0;
background: var(--gradient-accent);
opacity: 0;
transition: opacity var(--transition);
}
.option-btn:hover {
border-color: var(--accent-soft);
transform: translateY(-2px) scale(1.04);
box-shadow: 0 8px 32px rgba(224, 64, 85, 0.25);
}
.option-btn:hover::before {
opacity: 0.2;
}
.progress-container { display: none; }
.progress-container.hidden { display: none; }
:root {
--rhythm-color: #6a5acd;
--rhythm-glow: #8a7aed;
}
.rhythm-ui {
width: 100%;
max-width: 520px;
margin: 0 auto 20px;
display: flex;
flex-direction: column;
align-items: center;
gap: 4px;
}
.rhythm-ui.hidden { display: none; }
.rhythm-guide-bar {
width: 100%;
height: 8px;
border-radius: 4px;
background: rgba(255, 255, 255, 0.06);
position: relative;
overflow: hidden;
transition: background 0.4s ease;
}
.rhythm-guide-glow {
position: absolute;
inset: 0;
border-radius: 4px;
background: var(--rhythm-color);
opacity: 0.15;
transition: opacity 0.15s ease, background 0.6s ease;
}
.rhythm-guide-bar.beat-active .rhythm-guide-glow {
animation: beatPulse 0.35s ease-out;
}
@keyframes beatPulse {
0% {
opacity: 1;
transform: scaleY(2.2) scaleX(1.02);
box-shadow: 0 0 20px var(--rhythm-glow), 0 0 40px var(--rhythm-glow);
}
50% {
opacity: 0.6;
transform: scaleY(1.3) scaleX(1.01);
}
100% {
opacity: 0.15;
transform: scaleY(1) scaleX(1);
box-shadow: none;
}
}
.rhythm-guide-bar.combo-success .rhythm-guide-glow {
background: #00e676 !important;
opacity: 1 !important;
animation: comboFlash 0.6s ease-out;
}
@keyframes comboFlash {
0% { opacity: 1; transform: scaleY(2.5); }
30% { opacity: 0.9; }
100% { opacity: 0.15; transform: scaleY(1); }
}
.rhythm-guide-bar.bar-vibrate {
animation: barVibrate 0.3s ease-out;
}
@keyframes barVibrate {
0%   { transform: translateX(0); }
15%  { transform: translateX(-4px) scaleY(1.6); }
30%  { transform: translateX(3px) scaleY(1.3); }
45%  { transform: translateX(-2px) scaleY(1.1); }
60%  { transform: translateX(1px); }
100% { transform: translateX(0) scaleY(1); }
}
.rhythm-guide-bar.hold-active .rhythm-guide-glow {
background: #ffd700 !important;
opacity: 0.9 !important;
animation: holdVibrate 0.12s ease-in-out infinite alternate !important;
}
@keyframes holdVibrate {
0%   { transform: scaleY(1) translateY(0); opacity: 0.75; }
100% { transform: scaleY(2) translateY(-1px); opacity: 1; }
}
.rhythm-guide-bar.hold-fail .rhythm-guide-glow {
background: #e04055 !important;
opacity: 1 !important;
animation: holdFailFlash 0.4s ease-out forwards !important;
}
@keyframes holdFailFlash {
0%   { opacity: 1; transform: scaleY(2.5); }
100% { opacity: 0.15; transform: scaleY(1); }
}
.rhythm-guide-bar.rapid-active .rhythm-guide-glow {
background: #00e5ff !important;
animation: rapidBlink 0.08s linear infinite alternate !important;
}
@keyframes rapidBlink {
0%   { opacity: 0.1; transform: scaleY(1); }
100% { opacity: 1; transform: scaleY(2.2); background: #e040fb; }
}
.rhythm-guide-bar.perfect-active .rhythm-guide-glow {
background: #ff9100 !important;
animation: perfectPulse 0.2s ease-in-out infinite alternate !important;
}
@keyframes perfectPulse {
0%   { opacity: 0.5; transform: scaleY(1.2); box-shadow: 0 0 8px #ff9100; }
100% { opacity: 1; transform: scaleY(2.8); box-shadow: 0 0 30px #ff9100, 0 0 60px rgba(255,145,0,0.4); }
}
.event-label {
text-align: center;
font-size: 0.92rem;
font-weight: 700;
letter-spacing: 0.06em;
padding: 5px 16px;
border-radius: 6px;
background: rgba(0, 0, 0, 0.55);
color: #fff;
margin-top: 4px;
animation: eventLabelIn 0.25s ease-out;
text-shadow: 0 0 10px currentColor;
}
.event-label.hidden {
display: none;
}
.event-label.hold-label   { color: #ffd700; }
.event-label.rapid-label  { color: #00e5ff; }
.event-label.perfect-label { color: #ff9100; }
.event-label.charge-label  { color: #69ff47; }
@keyframes eventLabelIn {
0%   { opacity: 0; transform: translateY(6px) scale(0.9); }
100% { opacity: 1; transform: translateY(0) scale(1); }
}
.rhythm-guide-bar.charge-active .rhythm-guide-glow {
background: #69ff47 !important;
animation: chargePulse 0.6s ease-in-out infinite alternate !important;
}
@keyframes chargePulse {
0%   { opacity: 0.4; transform: scaleY(1.0); box-shadow: 0 0 6px #69ff47; }
100% { opacity: 1;   transform: scaleY(2.2); box-shadow: 0 0 28px #69ff47, 0 0 55px rgba(105,255,71,0.3); }
}
.rhythm-guide-bar.beat-perfect-pulse .rhythm-guide-glow {
animation: beatPerfectPulse 0.18s ease-out forwards !important;
}
@keyframes beatPerfectPulse {
0%   { opacity: 1;   transform: scaleY(4.5); box-shadow: 0 0 40px #fff, 0 0 80px #ff9100; }
100% { opacity: 0.6; transform: scaleY(2.8); }
}
.perfect-approach-wrap {
width: 100%;
position: relative;
height: 14px;
background: rgba(255, 145, 0, 0.12);
border-radius: 7px;
border: 1px solid rgba(255, 145, 0, 0.35);
overflow: hidden;
margin-top: 4px;
}
.perfect-approach-wrap.hidden { display: none; }
.perfect-approach-bar {
height: 100%;
width: 0%;
border-radius: 7px;
background: linear-gradient(to right, #ff6b00, #ff9100, #fff176);
will-change: width;
box-shadow: 0 0 10px #ff9100;
transition: none;
}
.perfect-approach-bar.at-beat {
animation: approachFlash 0.22s ease-out forwards;
}
@keyframes approachFlash {
0%   { background: #fff; box-shadow: 0 0 32px #fff, 0 0 64px #ff9100; }
100% { background: linear-gradient(to right, #ff6b00, #ff9100, #fff176); box-shadow: 0 0 10px #ff9100; }
}
.perfect-beat-tick {
position: absolute;
right: 8px;
top: 50%;
transform: translateY(-50%);
font-size: 0.62rem;
font-weight: 800;
color: #fff;
pointer-events: none;
text-shadow: 0 0 8px #ff9100;
white-space: nowrap;
}
.perfect-beat-tick.hidden { display: none; }
.minigame-charge {
position: absolute;
right: 18px;
top: 50%;
transform: translateY(-50%);
display: flex;
flex-direction: column;
align-items: center;
gap: 10px;
z-index: 20;
pointer-events: none;
animation: chargeUIIn 0.3s ease-out;
}
@keyframes chargeUIIn {
0%   { opacity: 0; transform: translateY(-50%) translateX(20px); }
100% { opacity: 1; transform: translateY(-50%) translateX(0); }
}
.minigame-charge.hidden {
display: none;
}
.charge-track {
position: relative;
width: 38px;
height: 200px;
background: rgba(255, 255, 255, 0.08);
border-radius: 10px;
border: 2px solid rgba(255, 255, 255, 0.2);
overflow: hidden;
}
.charge-target-zone {
position: absolute;
left: 0;
right: 0;
background: rgba(105, 255, 71, 0.30);
border-top: 2px solid #69ff47;
border-bottom: 2px solid #69ff47;
animation: targetZonePulse 1.2s ease-in-out infinite alternate;
z-index: 2;
}
@keyframes targetZonePulse {
0%   { background: rgba(105, 255, 71, 0.25); }
100% { background: rgba(105, 255, 71, 0.45); }
}
.charge-fill {
position: absolute;
bottom: 0;
left: 0;
right: 0;
height: 0%;
background: linear-gradient(to top, #00c853, #69ff47);
border-radius: 0 0 8px 8px;
transition: none;
z-index: 3;
}
.charge-fill.charge-fill-success {
background: linear-gradient(to top, #ffd700, #fff176) !important;
box-shadow: 0 0 20px #ffd700;
}
.charge-markers {
position: absolute;
left: 0;
right: 0;
top: 0;
bottom: 0;
z-index: 4;
pointer-events: none;
}
.charge-marker-line {
position: absolute;
left: -2px;
right: -2px;
height: 2px;
background: rgba(255, 255, 255, 0.5);
}
.charge-label {
font-size: 0.72rem;
font-weight: 700;
color: #69ff47;
text-align: center;
text-shadow: 0 0 10px #69ff47;
letter-spacing: 0.04em;
max-width: 80px;
line-height: 1.3;
}
.charge-result {
font-size: 0.80rem;
font-weight: 800;
text-align: center;
letter-spacing: 0.05em;
text-shadow: 0 0 12px currentColor;
min-height: 1.2em;
}
.charge-result--success {
color: #ffd700;
animation: chargeResultPop 0.4s ease-out;
}
.charge-result--miss {
color: #ff5252;
animation: chargeResultPop 0.4s ease-out;
}
@keyframes chargeResultPop {
0%   { transform: scale(1.4); opacity: 0.5; }
100% { transform: scale(1);   opacity: 1; }
}
.rhythm-inner-bar {
width: 100%;
}
.rhythm-inner-bar .progress-bar-bg {
width: 100%;
height: 8px;
background: rgba(255, 255, 255, 0.08);
border-radius: 4px;
overflow: hidden;
position: relative;
}
.rhythm-inner-bar .progress-bar-fill {
height: 100%;
width: 0%;
background: var(--gradient-accent);
border-radius: 4px;
transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
position: relative;
}
.rhythm-inner-bar .progress-bar-fill::after {
content: '';
position: absolute;
right: 0;
top: -3px;
bottom: -3px;
width: 24px;
background: var(--accent-soft);
border-radius: 50%;
filter: blur(8px);
opacity: 0.6;
}
.rhythm-inner-bar .progress-bar-fill.bar-hit {
animation: innerPulse 0.25s ease-out;
}
@keyframes innerPulse {
0% {
filter: brightness(2);
transform: scaleY(2);
}
50% {
filter: brightness(1.5);
transform: scaleY(1.4);
}
100% {
filter: brightness(1);
transform: scaleY(1);
}
}
.rhythm-hint {
font-size: 0.88rem;
font-weight: 600;
color: var(--accent-soft);
letter-spacing: 0.04em;
text-align: center;
margin-bottom: 6px;
display: flex;
align-items: center;
gap: 6px;
animation: hintPulse 1.4s ease-in-out infinite;
transition: opacity 0.4s ease;
}
.rhythm-hint.hidden {
opacity: 0;
pointer-events: none;
animation: none;
}
.rhythm-hint kbd {
display: inline-block;
background: rgba(255,255,255,0.08);
border: 1px solid rgba(255,255,255,0.18);
border-radius: 5px;
padding: 1px 7px;
font-size: 0.8rem;
font-family: var(--font);
color: var(--text-bright);
letter-spacing: 0.06em;
}
@keyframes hintPulse {
0%, 100% { opacity: 1; text-shadow: 0 0 8px var(--accent-glow); }
50%       { opacity: 0.55; text-shadow: none; }
}
.rhythm-ui .progress-label {
text-align: center;
font-size: 0.75rem;
font-weight: 500;
color: var(--text-dim);
margin-top: 4px;
letter-spacing: 0.05em;
}
.vi-speed-controls {
display: flex;
align-items: center;
gap: 8px;
margin-top: 8px;
}
.vi-speed-controls.hidden { display: none; }
.vi-speed-btn {
width: 32px;
height: 32px;
padding: 0;
border: 1px solid rgba(255, 255, 255, 0.2);
border-radius: 50%;
background: rgba(255, 255, 255, 0.08);
color: var(--text-bright, #fff);
font-size: 1.2rem;
font-weight: 700;
cursor: pointer;
display: flex;
align-items: center;
justify-content: center;
transition: background 0.2s, border-color 0.2s;
}
.vi-speed-btn:hover {
background: rgba(255, 255, 255, 0.15);
border-color: rgba(255, 255, 255, 0.4);
}
.vi-speed-label {
font-size: 0.75rem;
color: var(--text-dim);
min-width: 36px;
text-align: center;
}
.flash-overlay {
position: absolute;
inset: 0;
pointer-events: none;
opacity: 0;
z-index: 490;
transition: opacity 0.15s ease;
}
.flash-hit {
background: radial-gradient(ellipse at center, rgba(0, 230, 118, 0.25), transparent 70%);
}
.flash-miss {
background: radial-gradient(ellipse at center, rgba(224, 64, 85, 0.35), transparent 70%);
}
.flash-hit.active {
opacity: 1;
animation: flashFade 0.3s ease-out forwards;
}
.flash-miss.active {
opacity: 1;
animation: flashFade 0.4s ease-out forwards;
}
@keyframes flashFade {
0% { opacity: 1; }
100% { opacity: 0; }
}
#video-player.shake {
animation: videoShake 0.5s ease-out;
}
@keyframes videoShake {
0% { transform: translateX(0); }
10% { transform: translateX(-8px) rotate(-0.5deg); }
20% { transform: translateX(7px) rotate(0.5deg); }
30% { transform: translateX(-6px) rotate(-0.3deg); }
40% { transform: translateX(5px) rotate(0.3deg); }
50% { transform: translateX(-3px); }
60% { transform: translateX(2px); }
70% { transform: translateX(-1px); }
100% { transform: translateX(0); }
}
.special-back-container {
position: absolute;
top: 16px;
left: 16px;
z-index: 520;
}
.special-back-container.hidden { display: none; }
.btn-special-back {
background: rgba(30, 30, 50, 0.75);
border: 1px solid rgba(255, 255, 255, 0.18);
color: #fff;
font-size: 0.85rem;
padding: 8px 16px;
border-radius: 8px;
cursor: pointer;
backdrop-filter: blur(4px);
transition: background 0.2s;
}
.btn-special-back:hover {
background: rgba(224, 64, 85, 0.35);
border-color: rgba(224, 64, 85, 0.6);
}
.score-hud {
position: absolute;
top: 20px;
left: 20px;
display: flex;
flex-direction: column;
gap: 7px;
z-index: 510;
pointer-events: none;
font-family: var(--font);
}
.score-hud.hidden { display: none; }
.score-pill {
display: flex;
align-items: center;
gap: 9px;
padding: 7px 16px 7px 12px;
border-radius: 50px;
backdrop-filter: blur(14px);
-webkit-backdrop-filter: blur(14px);
background: rgba(6, 6, 14, 0.55);
border: 1px solid rgba(255, 255, 255, 0.07);
box-shadow:
0 4px 20px rgba(0, 0, 0, 0.5),
inset 0 1px 0 rgba(255, 255, 255, 0.07);
transition: transform 0.18s cubic-bezier(0.4, 0, 0.2, 1);
}
.score-pill__icon {
font-size: 0.9rem;
line-height: 1;
opacity: 0.9;
}
.score-pill__val {
font-size: 1rem;
font-weight: 800;
letter-spacing: 0.03em;
min-width: 20px;
text-align: right;
font-variant-numeric: tabular-nums;
}
.score-pill--hits {
color: #00e676;
border-color: rgba(0, 230, 118, 0.18);
box-shadow:
0 4px 20px rgba(0, 0, 0, 0.5),
0 0 14px rgba(0, 230, 118, 0.14),
inset 0 1px 0 rgba(255, 255, 255, 0.07);
}
.score-pill--misses {
color: #ff5252;
border-color: rgba(255, 82, 82, 0.18);
box-shadow:
0 4px 20px rgba(0, 0, 0, 0.5),
0 0 14px rgba(255, 82, 82, 0.14),
inset 0 1px 0 rgba(255, 255, 255, 0.07);
}
.score-pill--streak {
color: #ffa726;
border-color: rgba(255, 167, 38, 0.18);
box-shadow:
0 4px 20px rgba(0, 0, 0, 0.5),
0 0 14px rgba(255, 167, 38, 0.14),
inset 0 1px 0 rgba(255, 255, 255, 0.07);
}
@keyframes hudPop {
0%   { transform: scale(1); }
40%  { transform: scale(1.12); }
100% { transform: scale(1); }
}
.score-pill.pop { animation: hudPop 0.22s cubic-bezier(0.4, 0, 0.2, 1); }
.global-settings-panel {
display: flex;
flex-direction: column;
gap: 10px;
animation: settingsPanelSlideIn 0.22s cubic-bezier(0.4, 0, 0.2, 1);
min-width: 200px;
background: rgba(12, 12, 24, 0.85);
backdrop-filter: blur(16px);
-webkit-backdrop-filter: blur(16px);
border: 1px solid rgba(255, 255, 255, 0.1);
border-radius: var(--radius-sm);
padding: 14px;
}
@keyframes settingsPanelSlideIn {
from { opacity: 0; transform: translateX(8px); }
to   { opacity: 1; transform: translateX(0); }
}
.settings-group {
display: flex;
flex-direction: column;
gap: 6px;
}
.settings-label {
font-size: 0.82rem;
color: var(--text-dim);
font-weight: 500;
}
.settings-toggle-label {
display: flex;
align-items: center;
gap: 8px;
cursor: pointer;
color: var(--text);
font-size: 0.85rem;
}
.settings-toggle-label input[type="checkbox"] {
width: 16px;
height: 16px;
accent-color: var(--accent);
cursor: pointer;
}
.settings-slider {
-webkit-appearance: none;
appearance: none;
width: 100%;
height: 4px;
border-radius: 2px;
background: rgba(255, 255, 255, 0.12);
outline: none;
cursor: pointer;
}
.settings-slider::-webkit-slider-thumb {
-webkit-appearance: none;
appearance: none;
width: 16px;
height: 16px;
border-radius: 50%;
background: var(--gradient-accent);
box-shadow: 0 2px 8px var(--accent-glow);
cursor: pointer;
}
.settings-slider::-moz-range-thumb {
width: 16px;
height: 16px;
border-radius: 50%;
background: var(--accent);
border: none;
box-shadow: 0 2px 8px var(--accent-glow);
cursor: pointer;
}
.card-score {
display: flex;
align-items: center;
gap: 10px;
margin-top: 10px;
}
.rank-bar {
display: flex;
gap: 3px;
}
.rank-segment {
padding: 2px 6px;
border-radius: 3px;
font-size: 0.7rem;
background: rgba(255, 255, 255, 0.05);
opacity: 0.3;
transition: all 0.3s ease;
}
.rank-segment.active {
opacity: 1;
}
.rank-segment.rank-bronze.active {
background: rgba(205, 127, 50, 0.3);
}
.rank-segment.rank-silver.active {
background: rgba(192, 192, 192, 0.3);
}
.rank-segment.rank-gold.active {
background: rgba(255, 215, 0, 0.3);
}
.rank-label {
font-size: 0.78rem;
font-weight: 600;
color: var(--text);
}
.rank-label.dim {
color: var(--text-dim);
font-weight: 400;
font-size: 0.75rem;
}
.card-score-btn {
position: absolute;
top: 12px;
right: 12px;
width: 34px;
height: 34px;
border-radius: 50%;
background: rgba(0, 0, 0, 0.6);
backdrop-filter: blur(8px);
-webkit-backdrop-filter: blur(8px);
border: 1px solid rgba(255, 255, 255, 0.15);
color: var(--text);
font-size: 0.9rem;
cursor: pointer;
display: flex;
align-items: center;
justify-content: center;
z-index: 5;
opacity: 0;
transition: opacity 0.3s ease, transform 0.2s ease;
}
.gallery-card:hover .card-score-btn {
opacity: 1;
}
.card-score-btn:hover {
transform: scale(1.15);
background: rgba(224, 64, 85, 0.4);
border-color: var(--accent);
}
.score-modal-box {
max-width: 440px;
}
.score-modal-box h3 {
font-size: 1.2rem;
font-weight: 700;
color: var(--text-bright);
margin-bottom: 20px;
text-align: center;
}
.score-empty {
text-align: center;
color: var(--text-dim);
padding: 20px 0;
}
.score-stats {
display: flex;
flex-direction: column;
gap: 10px;
margin-bottom: 20px;
}
.stat-row {
display: flex;
justify-content: space-between;
align-items: center;
padding: 8px 12px;
background: rgba(255, 255, 255, 0.03);
border-radius: var(--radius-xs);
border: 1px solid var(--border);
}
.stat-label {
font-size: 0.85rem;
color: var(--text-dim);
}
.stat-value {
font-size: 0.95rem;
font-weight: 600;
color: var(--text-bright);
}
.stat-value.hit-color { color: #00e676; }
.stat-value.miss-color { color: #ff5252; }
.stat-value.streak-color { color: #ffa726; }
.rank-bar-big {
display: flex;
gap: 4px;
justify-content: center;
}
.rank-bar-big .rank-segment {
padding: 8px 20px;
border-radius: var(--radius-xs);
font-size: 0.85rem;
font-weight: 600;
}
.special-btn-container {
text-align: center;
margin-bottom: 20px;
}
.special-btn-container.hidden { display: none; }
.intro-btn-container {
position: absolute;
inset: 0;
pointer-events: none;
}
.intro-btn-container.hidden { display: none; }
.btn-intro {
position: absolute;
bottom: 36px;
right: 40px;
pointer-events: none;
background: rgba(255, 255, 255, 0.1);
border: 1px solid rgba(255, 255, 255, 0.18);
color: var(--text-bright);
font-family: var(--font);
font-size: 0.9rem;
font-weight: 600;
padding: 12px 28px;
border-radius: var(--radius-sm);
cursor: pointer;
backdrop-filter: blur(12px);
-webkit-backdrop-filter: blur(12px);
letter-spacing: 0.01em;
opacity: 0;
transform: translateX(16px);
transition: opacity 0.4s ease, transform 0.4s ease, background var(--transition-fast), box-shadow var(--transition-fast);
}
.btn-intro.visible {
opacity: 1;
transform: translateX(0);
pointer-events: auto;
}
.btn-intro:hover {
background: var(--gradient-accent);
border-color: var(--accent);
box-shadow: 0 6px 24px var(--accent-glow);
}
.global-settings-wrap {
position: absolute;
top: 30px;
right: 40px;
display: flex;
flex-direction: row-reverse;
align-items: flex-start;
gap: 10px;
pointer-events: auto;
}
.global-settings-wrap.hidden { display: none; }
.btn-settings-toggle {
width: 42px;
height: 42px;
border-radius: 50%;
background: rgba(255, 255, 255, 0.1);
border: 1px solid rgba(255, 255, 255, 0.15);
color: var(--text-bright);
font-size: 1rem;
cursor: pointer;
backdrop-filter: blur(12px);
-webkit-backdrop-filter: blur(12px);
transition: all var(--transition-fast);
display: flex;
align-items: center;
justify-content: center;
flex-shrink: 0;
}
.btn-settings-toggle:hover {
background: rgba(255, 255, 255, 0.18);
border-color: rgba(255, 255, 255, 0.3);
}
.btn-settings-toggle.active {
background: var(--gradient-accent);
border-color: var(--accent);
box-shadow: 0 4px 16px var(--accent-glow);
}
.intro-skip-row {
position: absolute;
bottom: 80px;
left: 50%;
transform: translateX(-50%);
display: flex;
flex-direction: row;
gap: 12px;
pointer-events: auto;
animation: introSkipSlideIn 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}
.intro-skip-row.hidden { display: none; }
.global-settings-panel.hidden { display: none; }
@keyframes introSkipSlideIn {
from { opacity: 0; transform: translateX(16px); }
to   { opacity: 1; transform: translateX(0); }
}
.btn-skip-scene,
.btn-skip-intro,
.btn-back-gallery {
padding: 10px 18px;
border-radius: var(--radius-sm);
font-family: var(--font);
font-size: 0.85rem;
font-weight: 600;
cursor: pointer;
letter-spacing: 0.01em;
white-space: nowrap;
backdrop-filter: blur(12px);
-webkit-backdrop-filter: blur(12px);
transition: all var(--transition-fast);
}
.btn-skip-scene {
background: rgba(255, 255, 255, 0.08);
border: 1px solid rgba(255, 255, 255, 0.14);
color: var(--text);
}
.btn-skip-scene:hover {
background: rgba(255, 255, 255, 0.16);
border-color: rgba(255, 255, 255, 0.28);
color: var(--text-bright);
}
.btn-skip-intro {
background: rgba(255, 255, 255, 0.04);
border: 1px solid rgba(255, 255, 255, 0.08);
color: var(--text-dim);
}
.btn-skip-intro:hover {
background: rgba(255, 255, 255, 0.1);
color: var(--text);
border-color: rgba(255, 255, 255, 0.2);
}
.btn-back-gallery {
background: rgba(224, 64, 85, 0.08);
border: 1px solid rgba(224, 64, 85, 0.2);
color: var(--accent-soft);
}
.btn-back-gallery:hover {
background: rgba(224, 64, 85, 0.18);
border-color: var(--accent);
color: #fff;
}
.btn-fullscreen {
background: rgba(240, 160, 80, 0.08);
border: 1px solid rgba(240, 160, 80, 0.2);
color: var(--accent2);
padding: 10px 18px;
border-radius: var(--radius-sm);
font-family: var(--font);
font-size: 0.85rem;
font-weight: 600;
cursor: pointer;
letter-spacing: 0.01em;
white-space: nowrap;
backdrop-filter: blur(12px);
-webkit-backdrop-filter: blur(12px);
transition: all var(--transition-fast);
width: 100%;
}
.btn-fullscreen:hover {
background: rgba(240, 160, 80, 0.18);
border-color: var(--accent2);
color: #fff;
}
.back-btn-container {
text-align: center;
margin-bottom: 10px;
}
.btn-back-menu {
background: rgba(255, 255, 255, 0.07);
border: 1px solid rgba(255, 255, 255, 0.13);
color: var(--text);
font-size: 0.88rem;
font-weight: 600;
padding: 10px 22px;
border-radius: var(--radius-sm);
backdrop-filter: blur(12px);
-webkit-backdrop-filter: blur(12px);
cursor: pointer;
letter-spacing: 0.01em;
transition: all var(--transition-fast);
}
.btn-back-menu:hover {
background: rgba(255, 255, 255, 0.14);
border-color: rgba(255, 255, 255, 0.25);
color: var(--text-bright);
}
.empty-state {
text-align: center;
padding: 80px 20px;
color: var(--text-dim);
}
.empty-state .icon {
font-size: 4rem;
margin-bottom: 20px;
opacity: 0.6;
}
.empty-state p {
font-size: 1.05rem;
line-height: 1.7;
max-width: 360px;
margin: 0 auto;
}
::-webkit-scrollbar {
width: 8px;
}
::-webkit-scrollbar-track {
background: var(--bg);
}
::-webkit-scrollbar-thumb {
background: rgba(255, 255, 255, 0.1);
border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
background: rgba(255, 255, 255, 0.18);
}
::selection {
background: rgba(224, 64, 85, 0.3);
color: var(--text-bright);
}
@media (max-width: 600px) {
#gallery { padding: 32px 16px 60px; }
#gallery h1 { font-size: 1.6rem; }
.gallery-grid { grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 20px; }
.modal-box { padding: 24px; border-radius: var(--radius); }
.viewer-overlay { padding: 24px; }
.option-btn { padding: 12px 22px; font-size: 0.9rem; }
.btn { padding: 10px 22px; font-size: 0.85rem; }
.gallery-card .card-info { padding: 16px; }
.score-hud { top: 16px; left: 16px; font-size: 0.8rem; gap: 10px; }
.rhythm-ui { max-width: 90vw; }
.global-settings-wrap { top: 16px; right: 16px; }
.global-settings-panel { min-width: 160px; }
}
.mode-selection-box {
max-width: 480px;
padding: 0;
overflow: hidden;
background: transparent;
border: none;
box-shadow: none;
}
.mode-selection-box::before {
display: none;
}
.mode-header {
position: relative;
padding: 40px 36px 32px;
text-align: center;
background: linear-gradient(160deg, rgba(224,64,85,0.12) 0%, rgba(124,77,255,0.08) 60%, transparent 100%);
border-bottom: 1px solid rgba(255,255,255,0.06);
}
.mode-header::before {
content: '';
position: absolute;
inset: 0;
background: var(--bg-card);
z-index: -1;
}
.mode-header-icon {
width: 56px;
height: 56px;
border-radius: 16px;
background: linear-gradient(135deg, var(--accent), var(--accent2));
display: flex;
align-items: center;
justify-content: center;
font-size: 1.5rem;
margin: 0 auto 16px;
box-shadow: 0 4px 20px var(--accent-glow);
}
.mode-selection-box .mode-title {
font-size: 1.25rem;
font-weight: 700;
color: var(--text-bright);
margin: 0;
letter-spacing: -0.02em;
line-height: 1.35;
}
.mode-subtitle {
font-size: 0.8rem;
color: var(--text-dim);
margin-top: 6px;
font-weight: 400;
letter-spacing: 0.03em;
text-transform: uppercase;
}
.mode-body {
padding: 28px 32px 32px;
background: var(--bg-card);
display: flex;
flex-direction: column;
gap: 12px;
}
.mode-buttons {
display: flex;
flex-direction: column;
gap: 12px;
margin: 0;
}
.btn-mode {
width: 100%;
padding: 0;
font-size: 1rem;
font-weight: 600;
border-radius: 14px;
letter-spacing: 0.01em;
transition: all var(--transition);
display: flex;
align-items: center;
gap: 0;
text-align: left;
position: relative;
overflow: hidden;
border: 1px solid transparent;
}
.btn-mode-inner {
display: flex;
align-items: center;
gap: 18px;
padding: 20px 22px;
width: 100%;
position: relative;
z-index: 1;
}
.btn-mode-icon {
width: 48px;
height: 48px;
border-radius: 12px;
display: flex;
align-items: center;
justify-content: center;
font-size: 1.4rem;
flex-shrink: 0;
}
.btn-mode-text {
flex: 1;
}
.btn-mode-label {
display: block;
font-size: 1rem;
font-weight: 700;
color: #fff;
letter-spacing: -0.01em;
}
.btn-mode-desc {
display: block;
font-size: 0.76rem;
color: rgba(255,255,255,0.6);
margin-top: 2px;
font-weight: 400;
}
.btn-mode-arrow {
font-size: 1.1rem;
color: rgba(255,255,255,0.4);
flex-shrink: 0;
transition: transform var(--transition-fast), color var(--transition-fast);
}
.btn-mode-game {
background: linear-gradient(135deg, rgba(224,64,85,0.15), rgba(240,160,80,0.1));
border-color: rgba(224,64,85,0.25);
box-shadow: 0 2px 12px rgba(224,64,85,0.1);
}
.btn-mode-game .btn-mode-icon {
background: linear-gradient(135deg, #e04055, #f0a050);
box-shadow: 0 4px 16px rgba(224,64,85,0.35);
}
.btn-mode-game:hover {
background: linear-gradient(135deg, rgba(224,64,85,0.25), rgba(240,160,80,0.18));
border-color: rgba(224,64,85,0.5);
box-shadow: 0 4px 24px rgba(224,64,85,0.2), 0 0 0 1px rgba(224,64,85,0.15);
transform: translateY(-2px);
}
.btn-mode-game:hover .btn-mode-arrow {
transform: translateX(4px);
color: rgba(255,255,255,0.7);
}
.btn-mode-vi {
background: linear-gradient(135deg, rgba(124,77,255,0.15), rgba(224,64,251,0.1));
border-color: rgba(124,77,255,0.25);
box-shadow: 0 2px 12px rgba(124,77,255,0.1);
}
.btn-mode-vi .btn-mode-icon {
background: linear-gradient(135deg, #7c4dff, #e040fb);
box-shadow: 0 4px 16px rgba(124,77,255,0.4);
}
.btn-mode-vi:hover:not(:disabled) {
background: linear-gradient(135deg, rgba(124,77,255,0.25), rgba(224,64,251,0.18));
border-color: rgba(124,77,255,0.5);
box-shadow: 0 4px 24px rgba(124,77,255,0.2), 0 0 0 1px rgba(124,77,255,0.15);
transform: translateY(-2px);
}
.btn-mode-vi:hover:not(:disabled) .btn-mode-arrow {
transform: translateX(4px);
color: rgba(255,255,255,0.7);
}
.btn-mode-vi:disabled,
.btn-mode-vi.locked {
background: rgba(255,255,255,0.03);
border-color: rgba(255,255,255,0.07);
box-shadow: none;
cursor: not-allowed;
opacity: 1;
}
.btn-mode-vi:disabled .btn-mode-icon,
.btn-mode-vi.locked .btn-mode-icon {
background: rgba(255,255,255,0.08);
box-shadow: none;
filter: grayscale(0.7);
}
.btn-mode-vi:disabled .btn-mode-label,
.btn-mode-vi.locked .btn-mode-label {
color: var(--text-dim);
}
.btn-mode-vi:disabled .btn-mode-arrow,
.btn-mode-vi.locked .btn-mode-arrow {
opacity: 0.3;
}
.vi-lock-msg {
display: flex;
align-items: center;
gap: 8px;
font-size: 0.78rem;
color: var(--text-dim);
background: rgba(255,255,255,0.03);
border: 1px solid rgba(255,255,255,0.06);
border-radius: 8px;
padding: 10px 14px;
margin: 0;
}
.vi-lock-msg::before {
content: '🔒';
font-size: 0.88rem;
flex-shrink: 0;
}
.vi-lock-msg.hidden { display: none; }
.mode-divider {
height: 1px;
background: rgba(255,255,255,0.06);
margin: 4px 0;
}
.btn-mode-back-styled {
background: transparent;
border: 1px solid rgba(255,255,255,0.08);
color: var(--text-dim);
font-size: 0.85rem;
font-weight: 500;
padding: 11px 20px;
border-radius: 10px;
cursor: pointer;
transition: all var(--transition-fast);
font-family: var(--font);
width: 100%;
text-align: center;
letter-spacing: 0.01em;
}
.btn-mode-back-styled:hover {
background: rgba(255,255,255,0.05);
border-color: rgba(255,255,255,0.15);
color: var(--text);
}
.vi-badge {
position: absolute;
top: 12px;
left: 12px;
width: 34px;
height: 34px;
border-radius: 50%;
background: linear-gradient(135deg, #7c4dff, #e040fb);
display: flex;
align-items: center;
justify-content: center;
font-size: 0.95rem;
z-index: 5;
box-shadow: 0 2px 12px rgba(124, 77, 255, 0.4);
animation: viBadgePulse 3s ease-in-out infinite;
}
@keyframes viBadgePulse {
0%, 100% { box-shadow: 0 2px 12px rgba(124, 77, 255, 0.4); }
50% { box-shadow: 0 2px 20px rgba(224, 64, 251, 0.6), 0 0 30px rgba(124, 77, 255, 0.2); }
}
.rhythm-ui.vi-mode .rhythm-guide-bar {
display: none;
}
.rhythm-ui.vi-mode .rhythm-hint {
display: none;
}
.rhythm-ui.vi-mode .event-label {
display: none;
}
.rhythm-ui.vi-mode .progress-bar-fill,
.progress-bar-fill.vi-bar {
background: linear-gradient(135deg, #7c4dff, #e040fb);
animation: viBarGlow 2s ease-in-out infinite;
}
.rhythm-ui.vi-mode .progress-bar-fill::after {
background: #e040fb;
}
@keyframes viBarGlow {
0%, 100% {
box-shadow: 0 0 8px rgba(224, 64, 251, 0.4);
filter: brightness(1);
}
50% {
box-shadow: 0 0 20px rgba(224, 64, 251, 0.7), 0 0 40px rgba(124, 77, 255, 0.3);
filter: brightness(1.3);
}
}
.vip-badge {
position: absolute;
top: 12px;
right: 12px;
padding: 4px 12px;
border-radius: 20px;
background: linear-gradient(135deg, #f0a050, #e8c547);
color: #1a1a2e;
font-size: 0.75rem;
font-weight: 800;
letter-spacing: 0.05em;
z-index: 5;
box-shadow: 0 2px 12px rgba(240, 160, 80, 0.5);
animation: vipBadgePulse 3s ease-in-out infinite;
text-transform: uppercase;
}
@keyframes vipBadgePulse {
0%, 100% { box-shadow: 0 2px 12px rgba(240, 160, 80, 0.4); }
50% { box-shadow: 0 2px 20px rgba(240, 160, 80, 0.7), 0 0 30px rgba(232, 197, 71, 0.3); }
}
.gallery-card.card--vip .thumb::before {
content: '';
position: absolute;
inset: 0;
background: rgba(0, 0, 0, 0.45);
z-index: 2;
pointer-events: none;
transition: background var(--transition);
}
.gallery-card.card--vip:hover .thumb::before {
background: rgba(0, 0, 0, 0.3);
}
.gallery-card.card--vip {
cursor: default;
}
.vip-modal-box {
max-width: 460px;
}
.vip-modal-box::before {
background: linear-gradient(135deg, #f0a050, #e8c547) !important;
}
.vip-modal-icon {
font-size: 3rem;
margin-bottom: 12px;
animation: vipIconFloat 3s ease-in-out infinite;
}
@keyframes vipIconFloat {
0%, 100% { transform: translateY(0); }
50% { transform: translateY(-6px); }
}
.vip-modal-title {
font-size: 1.5rem;
font-weight: 800;
color: var(--accent2);
margin-bottom: 12px;
letter-spacing: -0.01em;
}
.vip-modal-text {
font-size: 0.95rem;
color: var(--text);
line-height: 1.6;
margin-bottom: 24px;
}
.vip-modal-patreon-btn {
display: inline-flex;
align-items: center;
justify-content: center;
background: linear-gradient(135deg, #f0a050, #e8c547) !important;
color: #1a1a2e !important;
font-weight: 700;
padding: 12px 28px;
border-radius: 12px;
text-decoration: none;
font-size: 1rem;
transition: transform 0.2s, box-shadow 0.2s;
box-shadow: 0 4px 20px rgba(240, 160, 80, 0.4);
}
.vip-modal-patreon-btn:hover {
transform: translateY(-2px);
box-shadow: 0 6px 30px rgba(240, 160, 80, 0.6);
}
#wallet-display {
position: absolute;
top: 18px;
right: 24px;
display: flex;
align-items: center;
gap: 6px;
background: rgba(40, 0, 60, 0.85);
border: 1px solid rgba(181, 123, 238, 0.35);
border-radius: 30px;
padding: 8px 18px;
font-family: var(--font);
font-size: 1rem;
font-weight: 700;
color: #f0d060;
box-shadow: 0 0 20px rgba(181, 123, 238, 0.15), inset 0 0 8px rgba(181, 123, 238, 0.05);
z-index: 10;
user-select: none;
transition: transform 0.3s cubic-bezier(.4,0,.2,1);
}
#wallet-display.wallet-pop {
animation: walletPop 0.4s cubic-bezier(.4,0,.2,1);
}
@keyframes walletPop {
0%   { transform: scale(1); }
40%  { transform: scale(1.18); }
100% { transform: scale(1); }
}
.wallet-coin-icon { font-size: 1.15em; }
.wallet-label { font-size: 0.78rem; color: rgba(240,208,96,0.65); font-weight: 500; }
#gallery {
position: relative;
}
#gallery-tabs {
display: flex;
justify-content: center;
gap: 8px;
margin: 0 auto 20px;
padding: 0 24px;
}
.gallery-tab {
background: var(--glass);
border: 1px solid var(--glass-border);
border-radius: var(--radius-sm);
padding: 10px 28px;
font-family: var(--font);
font-size: 0.92rem;
font-weight: 600;
color: var(--text-dim);
cursor: pointer;
transition: all var(--transition-fast);
}
.gallery-tab:hover {
background: rgba(255,255,255,0.06);
color: var(--text);
}
.gallery-tab.active {
background: linear-gradient(135deg, rgba(224,64,85,0.2), rgba(240,160,80,0.12));
border-color: rgba(224,64,85,0.3);
color: var(--text-bright);
box-shadow: 0 2px 12px rgba(224,64,85,0.15);
}
.boxes-grid {
display: grid;
grid-template-columns: repeat(4, 1fr);
gap: 12px;
max-width: 900px;
margin: 0 auto;
padding: 0 0 24px;
}
.box-card {
background: var(--bg-card);
border: 1px solid var(--glass-border);
border-radius: var(--radius);
padding: 18px 16px;
text-align: center;
transition: all var(--transition);
position: relative;
overflow: hidden;
}
.box-card::before {
content: '';
position: absolute;
inset: 0;
background: var(--gradient-card);
pointer-events: none;
}
.box-card:hover {
transform: translateY(-3px);
border-color: var(--border-hover);
box-shadow: var(--shadow-md);
}
.box-card__icon {
font-size: 2rem;
margin-bottom: 6px;
filter: drop-shadow(0 4px 12px rgba(0,0,0,0.5));
}
.box-card__title {
font-size: 0.9rem;
font-weight: 700;
color: var(--text-bright);
margin-bottom: 3px;
}
.box-card__desc {
font-size: 0.75rem;
color: var(--text-dim);
margin-bottom: 10px;
}
.box-card__price {
display: flex;
align-items: center;
justify-content: center;
gap: 4px;
font-size: 1rem;
font-weight: 700;
color: #f0d060;
margin-bottom: 10px;
}
.box-buy-btn {
width: 100%;
padding: 7px 0;
font-size: 0.82rem;
}
.box-buy-btn:disabled {
opacity: 0.4;
cursor: not-allowed;
}
.box-card--cheap:hover  { border-color: rgba(100,200,120,0.3); box-shadow: 0 4px 24px rgba(100,200,120,0.1); }
.box-card--medium:hover { border-color: rgba(100,150,255,0.3); box-shadow: 0 4px 24px rgba(100,150,255,0.1); }
.box-card--expensive:hover { border-color: rgba(240,160,80,0.3); box-shadow: 0 4px 24px rgba(240,160,80,0.1); }
.box-card--cheap .box-card__icon  { color: #64c878; }
.box-card--medium .box-card__icon { color: #6496ff; }
.box-card--expensive .box-card__icon { color: #f0a050; }
.box-result-box {
text-align: center;
max-width: 420px;
}
.box-result-icon {
font-size: 3.5rem;
margin-bottom: 8px;
animation: boxOpen 0.6s cubic-bezier(.4,0,.2,1);
}
@keyframes boxOpen {
0%   { transform: scale(0.3) rotate(-15deg); opacity: 0; }
60%  { transform: scale(1.15) rotate(3deg); opacity: 1; }
100% { transform: scale(1) rotate(0); }
}
.box-result-title {
font-size: 1.3rem;
font-weight: 700;
color: var(--text-bright);
margin-bottom: 16px;
}
.box-result-items {
display: flex;
flex-direction: column;
gap: 10px;
margin-bottom: 20px;
}
.box-result-item {
background: rgba(255,255,255,0.04);
border: 1px solid rgba(255,255,255,0.08);
border-radius: var(--radius-sm);
padding: 12px 16px;
display: flex;
align-items: center;
gap: 10px;
animation: itemReveal 0.5s ease-out both;
}
.box-result-item:nth-child(2) { animation-delay: 0.2s; }
.box-result-item:nth-child(3) { animation-delay: 0.4s; }
@keyframes itemReveal {
0%   { transform: translateY(20px); opacity: 0; }
100% { transform: translateY(0); opacity: 1; }
}
.box-result-item__icon { font-size: 1.5rem; }
.box-result-item__info { text-align: left; }
.box-result-item__label {
font-weight: 600;
color: var(--text-bright);
font-size: 0.95rem;
}
.box-result-item__exp {
font-size: 0.78rem;
color: var(--text-dim);
}
.boxes-congrats {
text-align: center;
padding: 40px 24px;
font-size: 1.1rem;
color: var(--text);
line-height: 1.6;
}
.boxes-congrats.hidden { display: none; }
.boxes-congrats .congrats-icon { font-size: 3rem; display: block; margin-bottom: 12px; }
.boxes-congrats .congrats-title {
font-size: 1.4rem;
font-weight: 700;
color: #f0d060;
margin-bottom: 8px;
}
.boxes-congrats .btn-patreon-cta {
display: inline-flex;
align-items: center;
gap: 8px;
margin-top: 16px;
background: linear-gradient(135deg, #f0a050, #e8c547);
color: #1a1a2e;
font-weight: 700;
padding: 12px 28px;
border-radius: 12px;
border: none;
cursor: pointer;
font-size: 1rem;
text-decoration: none;
transition: transform 0.2s, box-shadow 0.2s;
box-shadow: 0 4px 20px rgba(240,160,80,0.4);
}
.boxes-congrats .btn-patreon-cta:hover {
transform: translateY(-2px);
box-shadow: 0 6px 30px rgba(240,160,80,0.6);
}
.saves-panel {
max-width: 640px;
margin: 0 auto;
padding: 0 24px 48px;
display: flex;
flex-direction: column;
align-items: center;
gap: 28px;
}
.saves-header {
text-align: center;
}
.saves-header-icon {
font-size: 3rem;
margin-bottom: 8px;
}
.saves-title {
font-family: var(--font);
font-size: 1.4rem;
font-weight: 700;
color: var(--text-bright);
margin: 0 0 8px;
}
.saves-subtitle {
font-size: 0.88rem;
color: var(--text-dim);
line-height: 1.5;
margin: 0;
}
.saves-stats {
display: grid;
grid-template-columns: repeat(2, 1fr);
gap: 12px;
width: 100%;
}
.saves-stat {
background: var(--glass);
border: 1px solid var(--glass-border);
border-radius: var(--radius-sm);
padding: 16px 20px;
display: flex;
flex-direction: column;
align-items: center;
gap: 4px;
transition: border-color var(--transition-fast);
}
.saves-stat:hover {
border-color: rgba(224,64,85,0.25);
}
.saves-stat-icon {
font-size: 1.6rem;
}
.saves-stat-label {
font-size: 0.75rem;
color: var(--text-dim);
font-weight: 500;
text-align: center;
}
.saves-stat-val {
font-size: 1.5rem;
font-weight: 700;
color: var(--text-bright);
font-variant-numeric: tabular-nums;
}
.saves-actions {
display: flex;
gap: 14px;
flex-wrap: wrap;
justify-content: center;
}
.saves-btn {
display: inline-flex;
align-items: center;
gap: 8px;
padding: 12px 28px;
font-size: 0.95rem;
font-weight: 600;
cursor: pointer;
text-decoration: none;
}
.saves-btn-icon {
font-size: 1.1rem;
}
.saves-note {
font-size: 0.8rem;
color: var(--text-dim);
text-align: center;
line-height: 1.5;
margin: 0;
padding: 12px 20px;
background: rgba(255,255,255,0.03);
border: 1px solid var(--glass-border);
border-radius: var(--radius-sm);
width: 100%;
box-sizing: border-box;
}
.option-btn.locked {
opacity: 0.45;
position: relative;
cursor: not-allowed;
filter: grayscale(40%);
}
.option-btn.locked::after {
content: '🔒';
position: absolute;
top: -6px;
right: -6px;
font-size: 0.85rem;
background: rgba(0,0,0,0.7);
border-radius: 50%;
width: 22px;
height: 22px;
display: flex;
align-items: center;
justify-content: center;
}
#locked-toast {
position: fixed;
top: 50%;
left: 50%;
transform: translate(-50%, -50%) scale(0.9);
background: rgba(20, 10, 40, 0.95);
border: 1px solid rgba(181, 123, 238, 0.4);
border-radius: var(--radius);
padding: 24px 32px;
text-align: center;
color: var(--text-bright);
font-size: 1rem;
font-weight: 600;
z-index: 9000;
opacity: 0;
pointer-events: none;
transition: opacity 0.3s, transform 0.3s;
box-shadow: 0 8px 40px rgba(0,0,0,0.6);
max-width: 340px;
}
#locked-toast.visible {
opacity: 1;
transform: translate(-50%, -50%) scale(1);
pointer-events: auto;
}
#locked-toast .locked-toast-icon { font-size: 2rem; display: block; margin-bottom: 8px; }
.coin-earn-indicator {
position: fixed;
top: 20%;
left: 50%;
transform: translateX(-50%);
color: #f0d060;
font-size: 1.3rem;
font-weight: 700;
pointer-events: none;
z-index: 8000;
animation: coinFloat 1s ease-out forwards;
text-shadow: 0 0 10px rgba(240,208,96,0.5);
}
@keyframes coinFloat {
0%   { opacity: 1; transform: translateX(-50%) translateY(0); }
100% { opacity: 0; transform: translateX(-50%) translateY(-60px); }
}
.paraiso-wrap {
display: flex;
flex-direction: column;
align-items: center;
padding: 24px 16px 32px;
position: relative;
}
#paraiso-canvas {
display: block;
max-width: 100%;
border-radius: var(--radius-sm, 10px);
border: 1px solid var(--glass-border, rgba(255,255,255,0.08));
box-shadow: 0 4px 32px rgba(0,0,0,0.5);
image-rendering: pixelated;
image-rendering: crisp-edges;
background: #0e1a0e;
}
.paraiso-hint {
margin-top: 12px;
font-size: 0.8rem;
color: var(--text-dim, #6e6e88);
letter-spacing: 0.05em;
}
#paraiso-touch-controls {
position: absolute;
bottom: 40px;
left: 0;
width: 100%;
height: 160px;
display: flex;
align-items: flex-end;
justify-content: space-between;
padding: 0 20px 12px;
pointer-events: none;
box-sizing: border-box;
}
#paraiso-joystick-zone {
position: relative;
width: 112px;
height: 112px;
border-radius: 50%;
background: rgba(255, 255, 255, 0.12);
border: 2px solid rgba(255, 255, 255, 0.22);
display: flex;
align-items: center;
justify-content: center;
pointer-events: all;
touch-action: none;
user-select: none;
flex-shrink: 0;
}
#paraiso-joystick-knob {
width: 46px;
height: 46px;
border-radius: 50%;
background: rgba(255, 255, 255, 0.38);
border: 2px solid rgba(255, 255, 255, 0.55);
box-shadow: 0 2px 8px rgba(0,0,0,0.4);
pointer-events: none;
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
transition: background 0.1s;
}
#paraiso-btn-interact {
width: 64px;
height: 64px;
border-radius: 50%;
background: rgba(160, 100, 255, 0.45);
border: 2px solid rgba(200, 160, 255, 0.60);
color: #fff;
font-size: 1.2rem;
font-weight: 700;
letter-spacing: 0.05em;
cursor: pointer;
pointer-events: all;
touch-action: none;
user-select: none;
display: flex;
align-items: center;
justify-content: center;
box-shadow: 0 2px 12px rgba(0,0,0,0.4);
transition: background 0.1s, transform 0.08s;
flex-shrink: 0;
align-self: flex-end;
}
#paraiso-btn-interact:active {
background: rgba(180, 120, 255, 0.70);
transform: scale(0.93);
}
@media (pointer: fine) {
#paraiso-touch-controls.touch-hidden {
display: none !important;
}
}
.inv-panel {
max-width: 520px;
margin: 2rem auto;
background: linear-gradient(160deg, #12111a 0%, #1a1828 100%);
border: 2px solid #3a2e5a;
border-radius: 16px;
overflow: hidden;
box-shadow: 0 8px 40px rgba(0,0,0,0.6), inset 0 1px 0 rgba(255,255,255,0.04);
}
.inv-header {
display: flex;
align-items: center;
justify-content: space-between;
padding: 0.75rem 1.2rem;
background: rgba(255,255,255,0.03);
border-bottom: 1px solid #2e2446;
}
.inv-header__title {
font-size: 0.85rem;
font-weight: 700;
letter-spacing: 0.1em;
text-transform: uppercase;
color: #a892d8;
}
.inv-header__count {
font-size: 0.75rem;
color: #6e6a8a;
}
.inv-grid {
display: grid;
grid-template-columns: repeat(4, 1fr);
gap: 10px;
padding: 1.1rem;
}
.inv-slot {
display: flex;
flex-direction: column;
align-items: center;
gap: 0.3rem;
cursor: default;
}
.inv-slot__inner {
position: relative;
width: 72px;
height: 72px;
background: linear-gradient(145deg, #0e0d18, #1a1828);
border: 2px solid #2a2040;
border-radius: 10px;
display: flex;
align-items: center;
justify-content: center;
transition: border-color 0.2s, box-shadow 0.2s;
box-shadow: inset 0 2px 6px rgba(0,0,0,0.5);
}
.inv-slot--owned .inv-slot__inner {
border-color: #7c5cbf;
box-shadow: inset 0 2px 6px rgba(0,0,0,0.4), 0 0 12px rgba(140,90,220,0.25);
background: linear-gradient(145deg, #14112a, #1e1a38);
}
.inv-slot--owned .inv-slot__inner:hover {
border-color: #e86cac;
box-shadow: inset 0 2px 6px rgba(0,0,0,0.3), 0 0 18px rgba(232,108,172,0.3);
}
.inv-slot__icon {
font-size: 2rem;
line-height: 1;
filter: drop-shadow(0 2px 4px rgba(0,0,0,0.6));
}
.inv-slot:not(.inv-slot--owned) .inv-slot__icon {
opacity: 0.18;
filter: grayscale(1);
}
.inv-slot__badge {
position: absolute;
bottom: 3px;
right: 5px;
background: #e86cac;
color: #fff;
font-size: 0.65rem;
font-weight: 800;
line-height: 1;
min-width: 16px;
height: 16px;
padding: 0 3px;
border-radius: 8px;
display: flex;
align-items: center;
justify-content: center;
box-shadow: 0 1px 4px rgba(0,0,0,0.5);
}
.inv-slot__name {
font-size: 0.68rem;
font-weight: 600;
color: #b0a8c8;
text-align: center;
line-height: 1.2;
max-width: 74px;
}
.inv-slot:not(.inv-slot--owned) .inv-slot__name {
opacity: 0.35;
}
.inv-slot__affinity {
font-size: 0.6rem;
color: #9b5ec8;
font-weight: 700;
}
.inv-slot:not(.inv-slot--owned) .inv-slot__affinity {
opacity: 0.3;
}
.settings-panel {
max-width: 640px;
margin: 0 auto;
padding: 0 24px 48px;
display: flex;
flex-direction: column;
align-items: center;
gap: 28px;
}
.settings-header {
text-align: center;
}
.settings-header-icon {
font-size: 3rem;
margin-bottom: 8px;
}
.settings-title {
font-family: var(--font);
font-size: 1.4rem;
font-weight: 700;
color: var(--text-bright);
margin: 0 0 8px;
}
.settings-section {
width: 100%;
background: var(--glass);
border: 1px solid var(--glass-border);
border-radius: var(--radius-sm);
padding: 20px 24px;
}
.settings-section-title {
font-size: 1.05rem;
font-weight: 700;
color: var(--text-bright);
margin: 0 0 16px;
}
.settings-row {
display: flex;
align-items: center;
gap: 12px;
margin-bottom: 12px;
}
.settings-row:last-child {
margin-bottom: 0;
}
.settings-row label {
font-size: 0.92rem;
color: var(--text-dim);
min-width: 60px;
}
.settings-slider {
flex: 1;
accent-color: var(--accent);
}
.settings-slider-label {
font-size: 0.85rem;
color: var(--text-dim);
min-width: 36px;
text-align: right;
}
.shop-section {
padding: 1.5rem 1.5rem 0.5rem;
max-width: 100%;
margin: 0 auto;
}
.shop-section + .shop-section {
padding-top: 1rem;
margin-top: 0.5rem;
border-top: 1px solid var(--border, #2e2e42);
}
.shop-section-title {
font-size: 1rem;
font-weight: 700;
color: var(--text, #e0e0f0);
margin: 0 0 0.3rem;
}
.shop-section-desc {
font-size: 0.82rem;
color: var(--text-dim, #7a7a9a);
margin: 0 0 1rem;
}
.gift-shop-grid {
display: grid;
grid-template-columns: repeat(4, 1fr);
gap: 1rem;
}
.gift-shop-card {
display: flex;
flex-direction: column;
align-items: center;
gap: 0.4rem;
padding: 1.2rem 1rem;
background: var(--bg-card, #1e1e2a);
border: 1.5px solid var(--border, #2e2e42);
border-radius: 12px;
text-align: center;
transition: border-color 0.2s, box-shadow 0.2s;
}
.gift-shop-card:not(.gift-shop-card--locked):hover {
border-color: var(--accent, #e86cac);
box-shadow: 0 0 12px rgba(232,108,172,0.18);
}
.gift-shop-card--locked { opacity: 0.5; }
.gift-shop-card__icon { font-size: 2.2rem; }
.gift-shop-card__name {
font-size: 0.85rem;
font-weight: 600;
color: var(--text, #e0e0f0);
}
.gift-shop-card__affinity {
font-size: 0.72rem;
color: #e86cac;
}
.gift-shop-card__price {
display: flex;
align-items: center;
gap: 0.25rem;
font-size: 0.95rem;
font-weight: 700;
color: var(--text, #e0e0f0);
margin-top: 0.15rem;
}
.gift-shop-card__buy {
margin-top: 0.3rem;
width: 100%;
padding: 0.45rem;
font-size: 0.82rem;
}
.specials-empty {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
padding: 4rem 2rem;
color: var(--text-dim, #7a7a9a);
text-align: center;
}
.specials-empty-icon { font-size: 3rem; margin-bottom: 1rem; display: block; }
.specials-exp-group {
padding: 1.5rem;
}
.specials-exp-title {
font-size: 1rem;
font-weight: 700;
color: var(--text, #e0e0f0);
margin-bottom: 1rem;
border-bottom: 1px solid var(--border, #2e2e42);
padding-bottom: 0.5rem;
display: flex;
align-items: center;
gap: 0.5rem;
}
.specials-npc-icon { font-size: 1.1rem; }
.specials-progress {
margin-left: auto;
font-size: 0.78rem;
font-weight: 500;
color: #e86cac;
background: rgba(232,108,172,0.12);
border: 1px solid rgba(232,108,172,0.25);
border-radius: 20px;
padding: 2px 10px;
}
.specials-exp-grid {
display: grid;
grid-template-columns: repeat(6, 1fr);
gap: 1rem;
}
@media (max-width: 900px) {
.specials-exp-grid {
grid-template-columns: repeat(4, 1fr);
}
}
@media (max-width: 600px) {
.specials-exp-grid {
grid-template-columns: repeat(2, 1fr);
}
}
.special-card {
display: flex;
flex-direction: column;
align-items: center;
gap: 0;
padding: 0;
background: var(--bg-card, #1e1e2a);
border: 1px solid var(--border, #2e2e42);
border-radius: 10px;
text-align: center;
overflow: hidden;
}
.special-card__thumb-wrap {
width: 100%;
aspect-ratio: 16/9;
overflow: hidden;
background: #0a0a12;
position: relative;
}
.special-card__thumb {
width: 100%;
height: 100%;
object-fit: cover;
display: block;
}
.special-card__thumb-wrap--locked {
display: flex;
align-items: center;
justify-content: center;
background: repeating-linear-gradient(
45deg,
#0e0e1a,
#0e0e1a 8px,
#131320 8px,
#131320 16px
);
}
.special-card__lock {
font-size: 1.8rem;
opacity: 0.4;
}
.special-card--locked {
opacity: 0.65;
border-style: dashed;
}
.special-card--unlocked {
border-color: rgba(232,108,172,0.3);
transition: border-color 0.2s;
}
.special-card--unlocked:hover {
border-color: rgba(232,108,172,0.7);
}
.special-card__label {
font-size: 0.8rem;
color: var(--text, #e0e0f0);
padding: 0.3rem 0.6rem 0;
}
.special-card__label--locked {
color: var(--text-dim, #7a7a9a);
}
.special-card--unlocked .btn {
margin: 0.4rem 0.6rem 0.7rem;
width: calc(100% - 1.2rem);
font-size: 0.8rem;
padding: 0.35rem;
}
.npc-modal-box {
display: flex;
flex-direction: column;
gap: 1rem;
max-width: 420px;
width: 95vw;
padding: 2rem;
}
.npc-modal-name {
font-size: 1.4rem;
font-weight: 700;
color: var(--accent, #e86cac);
margin: 0;
text-align: center;
}
.npc-level-panel {
display: flex;
flex-direction: column;
align-items: center;
gap: 0.4rem;
padding: 0.75rem 1rem;
background: rgba(232,108,172,0.06);
border: 1px solid rgba(232,108,172,0.2);
border-radius: 10px;
}
.npc-level-num {
font-size: 1rem;
color: var(--text-dim, #7a7a9a);
font-weight: 500;
}
.npc-level-num span {
font-size: 1.6rem;
font-weight: 800;
color: #e86cac;
line-height: 1;
}
.npc-level-bar-wrap {
width: 100%;
height: 10px;
background: var(--border, #2e2e42);
border-radius: 999px;
overflow: hidden;
}
.npc-level-bar {
height: 100%;
background: linear-gradient(90deg, #c94f8c, #e86cac, #f7a3cf);
border-radius: 999px;
transition: width 0.4s ease;
min-width: 4px;
}
.npc-level-pts {
font-size: 0.75rem;
color: var(--text-dim, #7a7a9a);
}
.npc-level-next {
color: #aaa;
}
.npc-income-rate {
font-size: 0.8rem;
color: #f5c518;
background: rgba(245, 197, 24, 0.10);
border: 1px solid rgba(245, 197, 24, 0.25);
border-radius: 6px;
padding: 3px 10px;
margin-top: 2px;
letter-spacing: 0.02em;
}
.npc-modal-affinity {
display: flex;
align-items: center;
justify-content: center;
gap: 2px;
flex-wrap: wrap;
}
.affinity-heart {
font-size: 1.35rem;
color: var(--border, #2e2e42);
transition: color 0.2s;
}
.affinity-heart.filled { color: #e86cac; }
.affinity-points {
font-size: 0.8rem;
color: var(--text-dim, #7a7a9a);
margin-left: 6px;
}
#npc-dialogue-modal {
z-index: 1150;
background: rgba(0,0,0,0.82);
align-items: flex-end;
padding-bottom: 6vh;
}
.npc-dialogue-box {
width: min(600px, 92vw);
background: linear-gradient(160deg, #1a1128 0%, #120d22 100%);
border: 2px solid #e86cac;
border-radius: 14px;
padding: 1.5rem 2rem 1.5rem 1.75rem;
box-shadow: 0 0 40px rgba(232,108,172,0.25), 0 0 0 6px rgba(232,108,172,0.07);
display: flex;
flex-direction: column;
gap: 1rem;
position: relative;
}
.npc-dialogue-box::before {
content: '';
position: absolute;
inset: 0;
border-radius: 12px;
background: repeating-linear-gradient(
0deg,
transparent,
transparent 3px,
rgba(255,255,255,0.015) 3px,
rgba(255,255,255,0.015) 4px
);
pointer-events: none;
}
.npc-dlg-header {
display: flex;
align-items: center;
gap: 0.6rem;
}
.npc-dlg-avatar {
font-size: 1.5rem;
line-height: 1;
}
.npc-dlg-name {
font-size: 1.1rem;
font-weight: 700;
color: #e86cac;
letter-spacing: 0.03em;
}
.npc-dlg-text {
font-size: 1rem;
line-height: 1.65;
color: #e8e0f0;
margin: 0;
font-style: italic;
padding-left: 0.25rem;
border-left: 3px solid rgba(232,108,172,0.35);
}
.npc-dlg-continue {
align-self: flex-end;
min-width: 140px;
}
.exp-end-score-box {
gap: 1.2rem;
max-width: min(500px, 92vw);
}
.exp-end-score-box .score-stats {
width: 100%;
}
.exp-end-score-box .rank-bar-big {
margin-top: 0.5rem;
}
.intro-story-footer {
display: flex;
align-items: center;
justify-content: space-between;
width: 100%;
}
.intro-story-progress {
font-size: 0.8rem;
color: rgba(232,108,172,0.5);
letter-spacing: 0.05em;
font-weight: 600;
}
.npc-choice-box {
gap: 1.2rem;
}
.npc-choice-prompt {
font-size: 1rem;
color: #c8b8e0;
margin: 0;
text-align: center;
letter-spacing: 0.02em;
}
.npc-choice-buttons {
display: flex;
flex-direction: column;
gap: 0.75rem;
width: 100%;
}
.npc-choice-btn {
width: 100%;
padding: 0.85rem 1.2rem;
font-size: 1.05rem;
font-weight: 700;
border: 2px solid transparent;
border-radius: 10px;
cursor: pointer;
transition: all 0.2s ease;
letter-spacing: 0.03em;
text-align: center;
}
.npc-choice-gift {
background: linear-gradient(135deg, rgba(232,108,172,0.15) 0%, rgba(180,60,120,0.1) 100%);
border-color: rgba(232,108,172,0.5);
color: #e8e0f0;
}
.npc-choice-gift:hover {
background: linear-gradient(135deg, rgba(232,108,172,0.3) 0%, rgba(180,60,120,0.2) 100%);
border-color: #e86cac;
box-shadow: 0 0 16px rgba(232,108,172,0.25);
}
.npc-choice-fun {
background: linear-gradient(135deg, rgba(255,140,80,0.15) 0%, rgba(240,100,60,0.1) 100%);
border-color: rgba(255,140,80,0.5);
color: #e8e0f0;
}
.npc-choice-fun:hover {
background: linear-gradient(135deg, rgba(255,140,80,0.3) 0%, rgba(240,100,60,0.2) 100%);
border-color: #ff8c50;
box-shadow: 0 0 16px rgba(255,140,80,0.25);
}
.npc-modal-section {
display: flex;
flex-direction: column;
gap: 0.5rem;
}
.npc-modal-section h4 {
margin: 0;
font-size: 0.85rem;
color: var(--text-dim, #7a7a9a);
}
.npc-modal-gifts {
display: flex;
flex-direction: column;
gap: 0.4rem;
}
.gift-btn {
display: flex;
align-items: center;
gap: 0.5rem;
padding: 0.5rem 0.75rem;
background: var(--bg-card, #1e1e2a);
border: 1.5px solid var(--border, #2e2e42);
border-radius: 8px;
color: var(--text, #e0e0f0);
font-size: 0.85rem;
cursor: pointer;
text-align: left;
transition: border-color 0.15s, background 0.15s;
}
.gift-btn:not([disabled]):hover {
border-color: var(--accent, #e86cac);
background: rgba(232,108,172,0.08);
}
.gift-btn--empty,
.gift-btn[disabled] {
opacity: 0.4;
cursor: not-allowed;
}
.gift-count { color: var(--text-dim, #7a7a9a); }
.gift-value {
margin-left: auto;
color: #e86cac;
font-weight: 600;
}
.npc-gift-notice {
display: flex;
flex-direction: column;
align-items: center;
gap: 0.6rem;
padding: 1rem 1.25rem;
background: linear-gradient(135deg, rgba(232,108,172,0.12) 0%, rgba(180,60,120,0.08) 100%);
border: 1.5px solid rgba(232,108,172,0.45);
border-radius: 12px;
animation: giftPulse 2.2s ease-in-out infinite;
}
.npc-gift-notice.hidden { display: none; }
@keyframes giftPulse {
0%, 100% { box-shadow: 0 0 0 0 rgba(232,108,172,0); }
50% { box-shadow: 0 0 14px 4px rgba(232,108,172,0.22); }
}
.npc-gift-notice__icon {
font-size: 2rem;
line-height: 1;
animation: giftBounce 1.6s ease-in-out infinite;
}
@keyframes giftBounce {
0%, 100% { transform: translateY(0); }
50% { transform: translateY(-5px); }
}
.npc-gift-notice__text {
font-size: 0.9rem;
color: #f0d0e8;
text-align: center;
font-style: italic;
font-weight: 500;
}
.btn-accent {
background: linear-gradient(135deg, #c94f8c, #e86cac);
color: #fff;
border: none;
padding: 0.55rem 1.4rem;
border-radius: 8px;
font-size: 0.9rem;
font-weight: 700;
cursor: pointer;
transition: opacity 0.15s, transform 0.1s;
letter-spacing: 0.02em;
}
.btn-accent:hover { opacity: 0.88; transform: scale(1.03); }
.btn-accent:active { transform: scale(0.97); }
#special-video-modal {
background: rgba(0,0,0,0.92);
z-index: 1100;
}
.special-video-wrap {
display: flex;
flex-direction: column;
align-items: center;
gap: 1rem;
width: 90vw;
max-width: 540px;
}
.special-video-notice {
background: rgba(255,255,255,0.05);
border: 1px solid rgba(255,255,255,0.12);
border-radius: 12px;
padding: 2rem 2.5rem;
text-align: center;
display: flex;
flex-direction: column;
align-items: center;
gap: 0.85rem;
width: 100%;
}
.special-video-notice-icon {
font-size: 2.4rem;
line-height: 1;
}
.special-video-notice-title {
margin: 0;
font-size: 1.25rem;
font-weight: 700;
color: #fff;
}
.special-video-notice-text {
margin: 0;
font-size: 0.9rem;
color: rgba(255,255,255,0.65);
line-height: 1.6;
}
.special-video-url-container {
margin-top: 0.5rem;
padding: 0.55rem 1rem;
border-radius: 8px;
background: rgba(255,255,255,0.07);
border: 1px solid rgba(255,255,255,0.15);
max-width: 360px;
width: 100%;
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
}
.special-video-link {
display: block;
color: #e63b6f;
font-size: 0.85rem;
font-weight: 500;
text-decoration: none;
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
transition: color 0.15s;
}
.special-video-link:hover {
color: #ff6a95;
text-decoration: underline;
}
.special-video-close {
min-width: 120px;
}
#rotate-overlay {
position: fixed;
inset: 0;
z-index: 10005;
background: #0a0a14;
display: flex;
align-items: center;
justify-content: center;
flex-direction: column;
text-align: center;
}
#rotate-overlay.hidden {
display: none;
}
.rotate-overlay-inner {
display: flex;
flex-direction: column;
align-items: center;
gap: 12px;
padding: 32px;
}
.rotate-icon {
font-size: 4rem;
line-height: 1;
animation: rotateSpin 2.5s ease-in-out infinite;
display: block;
}
@keyframes rotateSpin {
0%   { transform: rotate(0deg); opacity: 0.6; }
45%  { transform: rotate(90deg); opacity: 1; }
55%  { transform: rotate(90deg); opacity: 1; }
100% { transform: rotate(90deg); opacity: 0.6; }
}
.rotate-msg {
font-size: 1.2rem;
font-weight: 700;
color: var(--text-bright, #fff);
margin: 0;
}
.rotate-submsg {
font-size: 0.82rem;
color: var(--text-dim, #888);
margin: 0;
}
body.phone-mode #gallery {
padding: 8px 8px 60px;
min-height: 100dvh;
overflow-y: auto;
overflow-x: hidden;
}
body.phone-mode #gallery h1 {
display: none;
}
body.phone-mode #gallery .subtitle {
display: none;
}
body.phone-mode #wallet-display {
top: 6px;
right: 8px;
padding: 4px 10px;
font-size: 0.72rem;
border-radius: 20px;
}
body.phone-mode #gallery-tabs {
flex-wrap: nowrap;
overflow-x: auto;
gap: 4px;
padding: 4px 8px;
margin-bottom: 6px;
justify-content: flex-start;
scrollbar-width: none;
-ms-overflow-style: none;
}
body.phone-mode #gallery-tabs::-webkit-scrollbar {
display: none;
}
body.phone-mode .gallery-tab {
padding: 5px 10px;
font-size: 0.68rem;
flex: 0 0 auto;
white-space: nowrap;
text-align: center;
}
body.phone-mode .modal-overlay {
align-items: flex-start;
padding: 12px 10px;
}
body.phone-mode .modal-box {
max-height: 88vh;
overflow-y: auto;
padding: 18px 16px;
width: 96%;
}
body.phone-mode .mode-selection-box {
max-width: 98vw;
}
body.phone-mode .mode-header {
padding: 20px 18px 16px;
}
body.phone-mode .mode-body {
padding: 16px 18px 18px;
}
body.phone-mode .viewer-overlay {
padding: 10px 12px 10px;
}
body.phone-mode .score-hud {
top: 8px;
left: 8px;
font-size: 0.7rem;
gap: 6px;
}
body.phone-mode .score-pill {
padding: 4px 8px;
}
body.phone-mode .global-settings-wrap {
top: 8px;
right: 8px;
}
body.phone-mode .btn-settings-toggle {
font-size: 1rem;
padding: 5px 8px;
min-width: unset;
}
body.phone-mode .global-settings-panel {
min-width: 148px;
}
body.phone-mode .global-settings-panel .settings-label {
font-size: 0.78rem;
}
body.phone-mode .global-settings-panel .settings-slider {
width: 100%;
}
body.phone-mode .options-row {
gap: 8px;
margin-bottom: 6px;
}
body.phone-mode .option-btn {
padding: 9px 16px;
font-size: 0.8rem;
}
body.phone-mode .back-btn-container .btn,
body.phone-mode .btn-mode-back-styled {
padding: 8px 16px;
font-size: 0.80rem;
}
body.phone-mode .rhythm-ui {
max-width: 88vw;
margin-bottom: 6px;
}
body.phone-mode .rhythm-hint,
body.phone-mode #rhythm-hint-touch {
font-size: 0.78rem;
}
body.phone-mode .minigame-charge {
right: 10px;
}
body.phone-mode .charge-track {
height: 160px;
}
body.phone-mode .btn {
padding: 9px 18px;
font-size: 0.83rem;
}
body.phone-mode .btn-special {
font-size: 0.95rem;
padding: 12px 28px;
}
body.phone-mode .intro-btn-container,
body.phone-mode .special-btn-container {
margin-bottom: 4px;
}
body.phone-mode .paraiso-hint {
font-size: 0.72rem;
margin-top: 6px;
}
body.phone-mode .saves-panel {
padding: 16px;
}
body.phone-mode .saves-stats {
grid-template-columns: repeat(2, 1fr);
gap: 8px;
}
body.phone-mode .specials-exp-grid {
grid-template-columns: repeat(2, 1fr);
}
body.phone-mode .npc-modal-box {
padding: 16px;
width: 98%;
}
body.phone-mode .gift-shop-grid {
grid-template-columns: repeat(4, 1fr);
gap: 6px;
}
body.phone-mode .gift-shop-card {
padding: 0.6rem 0.4rem;
gap: 0.2rem;
}
body.phone-mode .gift-shop-card__icon { font-size: 1.4rem; }
body.phone-mode .gift-shop-card__name { font-size: 0.7rem; }
body.phone-mode .gift-shop-card__affinity { font-size: 0.62rem; }
body.phone-mode .gift-shop-card__price { font-size: 0.75rem; }
body.phone-mode .gift-shop-card__buy { padding: 0.3rem; font-size: 0.7rem; }
body.phone-mode .boxes-grid {
grid-template-columns: repeat(4, 1fr);
gap: 6px;
}
body.phone-mode .box-card {
padding: 10px 8px;
}
body.phone-mode .box-card__icon { font-size: 1.4rem; }
body.phone-mode .box-card__title { font-size: 0.75rem; }
body.phone-mode .box-card__desc { font-size: 0.65rem; }
body.phone-mode .box-card__price { font-size: 0.8rem; }
body.phone-mode .box-buy-btn { font-size: 0.7rem; padding: 5px 0; }
body.phone-mode .vip-modal-box {
padding: 18px;
}
body.phone-mode .score-modal-box {
padding: 18px;
}
body.phone-mode .mm-center {
gap: 14px;
padding: 14px 20px 52px;
}
body.phone-mode .mm-title {
font-size: clamp(2.4rem, 8vw, 4.5rem);
}
body.phone-mode .mm-title-sub {
font-size: 0.68rem;
letter-spacing: 0.22em;
}
body.phone-mode .mm-accent-line {
height: 18px;
}
body.phone-mode .mm-sep {
display: none;
}
body.phone-mode .mm-buttons {
flex-direction: row;
flex-wrap: wrap;
max-width: 480px;
gap: 10px;
justify-content: center;
}
body.phone-mode .mm-btn {
width: auto;
flex: 1 1 120px;
padding: 11px 16px;
font-size: 0.8rem;
letter-spacing: 0.04em;
}
body.phone-mode .mm-footer {
padding: 8px 14px;
}
body.phone-mode #tab-experiences {
width: 100%;
}
body.phone-mode .gallery-grid {
display: grid !important;
grid-template-columns: repeat(3, 1fr) !important;
gap: 8px !important;
padding: 0 4px !important;
width: 100% !important;
max-width: none !important;
overflow: visible !important;
}
body.phone-mode .gallery-card {
width: auto !important;
min-width: 0 !important;
max-width: none !important;
}
body.phone-mode .gallery-card .thumb {
aspect-ratio: 16 / 9;
}
body.phone-mode .gallery-card .card-info {
padding: 6px 8px;
}
body.phone-mode .gallery-card .card-info h3 {
font-size: 0.7rem;
margin-bottom: 2px;
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
}
body.phone-mode .gallery-card .card-info .actors-preview {
font-size: 0.6rem;
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
}
body.phone-mode .gallery-card .card-score {
display: none;
}
body.phone-mode .gallery-card .card-score-btn {
display: none;
}
body.phone-mode #tab-paraiso {
height: calc(100dvh - 72px);
min-height: 0;
overflow: hidden;
display: flex;
flex-direction: column;
}
@supports not (height: 1dvh) {
body.phone-mode #tab-paraiso {
height: calc(100vh - 72px);
}
}
body.phone-mode .paraiso-wrap {
flex: 1 1 auto;
min-height: 0;
padding: 0 !important;
width: 100%;
overflow: hidden;
position: relative;
display: flex;
align-items: center;
justify-content: center;
background: #0e1a0e;
}
body.phone-mode #paraiso-canvas {
flex: 0 0 auto;
max-width: 100%;
max-height: 100%;
width: auto !important;
height: auto !important;
border-radius: 0 !important;
border: none !important;
display: block;
}
body.phone-mode .paraiso-hint {
display: none !important;
}
body.phone-mode #paraiso-touch-controls {
bottom: 8px;
height: 130px;
}
body.phone-mode #paraiso-joystick-zone {
width: 96px;
height: 96px;
}
body.phone-mode #paraiso-btn-interact {
width: 56px;
height: 56px;
font-size: 1rem;
}
body.phone-mode .exp-end-score-box {
max-height: calc(100dvh - 24px);
overflow-y: auto;
padding: 0.9rem 1rem;
gap: 0.6rem;
width: min(98vw, 440px);
max-width: 98vw;
}
@supports not (height: 1dvh) {
body.phone-mode .exp-end-score-box {
max-height: calc(100vh - 24px);
}
}
body.phone-mode .exp-end-score-box .npc-dlg-header {
gap: 0.4rem;
}
body.phone-mode .exp-end-score-box .npc-dlg-avatar {
font-size: 1.1rem;
}
body.phone-mode .exp-end-score-box .npc-dlg-name {
font-size: 0.9rem;
}
body.phone-mode .exp-end-score-box .score-stats {
gap: 4px;
margin-bottom: 6px;
}
body.phone-mode .exp-end-score-box .stat-row {
padding: 5px 9px;
}
body.phone-mode .exp-end-score-box .stat-label {
font-size: 0.72rem;
}
body.phone-mode .exp-end-score-box .stat-value {
font-size: 0.8rem;
}
body.phone-mode .exp-end-score-box .rank-bar-big {
gap: 3px;
margin-top: 0.15rem;
}
body.phone-mode .exp-end-score-box .rank-bar-big .rank-segment {
padding: 5px 10px;
font-size: 0.7rem;
}
body.phone-mode .exp-end-score-box .npc-dlg-continue {
min-width: 90px;
font-size: 0.8rem;
padding: 7px 14px;
align-self: center;
}
.story-mode-game {
position: fixed; inset: 0; z-index: 10001;
background: #050508;
display: flex; flex-direction: column;
transition: opacity 0.5s cubic-bezier(.4,0,.2,1), visibility 0.5s;
}
.story-mode-game.hidden {
opacity: 0; visibility: hidden; pointer-events: none;
}
.storio-wrap {
flex: 1; position: relative;
display: flex; align-items: center; justify-content: center;
overflow: hidden;
}
#storio-canvas {
image-rendering: pixelated; image-rendering: crisp-edges;
background: #0a0a15;
max-width: 100%; max-height: 100%;
}
.storio-hint {
position: absolute; bottom: 12px; left: 50%;
transform: translateX(-50%);
font-family: var(--font); font-size: 0.72rem;
color: var(--text-dim); text-align: center;
pointer-events: none; white-space: nowrap;
background: rgba(0,0,0,0.5); padding: 4px 14px; border-radius: 20px;
}
#storio-touch-controls {
position: absolute; bottom: 28px; left: 0; right: 0;
display: flex; justify-content: space-between; align-items: center;
padding: 0 20px; pointer-events: none;
}
#storio-joystick-zone {
width: 110px; height: 110px; border-radius: 50%;
background: rgba(255,255,255,0.05); border: 2px solid rgba(255,255,255,0.12);
position: relative; pointer-events: auto; touch-action: none;
}
#storio-joystick-knob {
width: 44px; height: 44px; border-radius: 50%;
background: rgba(255,255,255,0.2);
position: absolute; top: 50%; left: 50%;
transform: translate(-50%, -50%);
}
#storio-btn-interact {
width: 58px; height: 58px; border-radius: 50%;
background: var(--accent); border: none; color: #fff;
font-size: 1.1rem; font-weight: 700; pointer-events: auto;
cursor: pointer; box-shadow: 0 0 20px var(--accent-glow);
}
.story-overlay {
position: fixed; inset: 0; z-index: 10010;
background: rgba(0,0,0,0.85);
display: flex; align-items: center; justify-content: center;
transition: opacity 0.3s cubic-bezier(.4,0,.2,1), visibility 0.3s;
}
.story-overlay.hidden {
opacity: 0; visibility: hidden; pointer-events: none;
}
.story-modal-box {
background: var(--bg-card);
border: 1px solid var(--border);
border-radius: var(--radius);
padding: 28px 32px;
max-width: 520px; width: 90%;
max-height: 80vh; overflow-y: auto;
text-align: left;
animation: mmFadeIn 0.4s cubic-bezier(.25,.46,.45,.94) both;
}
.story-modal-box h2 {
font-family: 'Cormorant Garamond', 'Playfair Display', Georgia, serif;
font-size: clamp(1.6rem, 4vw, 2.2rem);
font-weight: 700; font-style: italic;
color: var(--text-bright);
text-align: center; margin-bottom: 8px;
}
.story-modal-box p {
color: var(--text-dim); font-size: 0.85rem; text-align: center;
}
.story-stepmom-carousel {
background: var(--bg-card);
border: 1px solid var(--border);
border-radius: var(--radius);
padding: 28px 32px;
max-width: 700px; width: 90%;
text-align: center;
animation: mmFadeIn 0.4s cubic-bezier(.25,.46,.45,.94) both;
}
.story-stepmom-carousel h2 {
font-family: 'Cormorant Garamond', 'Playfair Display', Georgia, serif;
font-size: clamp(1.6rem, 4vw, 2.2rem);
font-weight: 700; font-style: italic;
color: var(--text-bright); margin-bottom: 16px;
}
.story-carousel-main { display: flex; align-items: center; gap: 8px; }
.story-carousel-arrow {
background: var(--glass); border: 1px solid var(--glass-border);
border-radius: 50%; width: 44px; height: 44px;
font-size: 1.2rem; color: var(--text);
cursor: pointer; flex-shrink: 0;
display: flex; align-items: center; justify-content: center;
transition: border-color 0.2s, background 0.2s;
}
.story-carousel-arrow:hover { border-color: var(--accent); background: rgba(224,64,85,0.1); }
.story-carousel-content {
flex: 1; position: relative;
border-radius: var(--radius-sm); overflow: hidden;
background: #000; min-height: 220px;
display: flex; align-items: center; justify-content: center;
}
.story-stepmom-info {
position: relative; z-index: 2; text-align: center;
}
#story-stepmom-preview-video {
position: absolute; inset: 0;
width: 100%; height: 100%; object-fit: cover;
opacity: 0.4;
}
.story-stepmom-info h3 {
font-size: 1.3rem; color: var(--text-bright);
text-shadow: 0 2px 8px rgba(0,0,0,0.8);
margin-bottom: 4px;
}
.story-stepmom-info p {
font-size: 0.78rem; color: var(--text-dim);
text-shadow: 0 1px 4px rgba(0,0,0,0.8);
}
.story-vip-badge {
display: inline-block;
margin-top: 6px;
padding: 3px 12px;
border-radius: 20px;
background: linear-gradient(135deg, #f0a050, #e8c547);
color: #1a1a2e;
font-size: 0.72rem;
font-weight: 800;
letter-spacing: 0.05em;
text-transform: uppercase;
box-shadow: 0 2px 12px rgba(240, 160, 80, 0.5);
animation: vipBadgePulse 3s ease-in-out infinite;
}
.story-vip-badge.hidden { display: none; }
.story-carousel-dots {
display: flex; justify-content: center; gap: 8px; margin: 12px 0;
}
.story-carousel-dot {
width: 10px; height: 10px; border-radius: 50%;
background: var(--border); cursor: pointer;
transition: background 0.2s, transform 0.2s;
}
.story-carousel-dot.active { background: var(--accent); transform: scale(1.3); }
.story-carousel-actions {
display: flex; gap: 10px; justify-content: center; margin-top: 12px;
}
.story-start-btn {
padding: 12px 40px; border-radius: 50px;
font-family: var(--font); font-size: 0.95rem; font-weight: 700;
letter-spacing: 0.06em; text-transform: uppercase;
color: #fff; background: var(--gradient-accent);
border: none; cursor: pointer;
transition: transform 0.2s, box-shadow 0.2s;
box-shadow: 0 4px 20px var(--accent-glow);
}
.story-start-btn:hover {
transform: translateY(-2px);
box-shadow: 0 8px 30px var(--accent-glow);
}
.story-vn-response.hidden,
.story-vn-npc-reply.hidden,
.story-continue-btn.hidden { display: none; }
.story-vn-response,
.story-vn-npc-reply {
display: flex; flex-direction: column; gap: 6px;
}
.story-vn-scene {
position: relative;
width: 100%; height: 100%;
display: flex; flex-direction: column;
justify-content: flex-end;
overflow: hidden;
animation: vnSceneIn 0.6s cubic-bezier(.25,.46,.45,.94) both;
}
@keyframes vnSceneIn {
from { opacity: 0; filter: blur(8px); }
to   { opacity: 1; filter: blur(0); }
}
.story-vn-particles {
position: absolute; inset: 0; pointer-events: none; z-index: 0;
}
.story-vn-particle {
position: absolute;
width: 2px; height: 2px;
background: var(--accent);
border-radius: 50%;
animation: vnParticleFloat 8s ease-in-out infinite;
opacity: 0;
}
.story-vn-particle:nth-child(1){ left:10%; top:20%; animation-delay:0s; width:3px; height:3px; }
.story-vn-particle:nth-child(2){ left:85%; top:30%; animation-delay:2s; background:var(--accent2); }
.story-vn-particle:nth-child(3){ left:70%; top:70%; animation-delay:4s; width:4px; height:4px; }
.story-vn-particle:nth-child(4){ left:25%; top:60%; animation-delay:6s; background:var(--accent2); }
.story-vn-particle:nth-child(5){ left:50%; top:15%; animation-delay:3s; width:2px; height:2px; }
@keyframes vnParticleFloat {
0%,100% { opacity:0; transform:translateY(0) scale(0); }
20%     { opacity:0.6; transform:translateY(-30px) scale(1); }
80%     { opacity:0; transform:translateY(-80px) scale(0.3); }
}
.story-vn-panel {
position: relative; z-index: 2;
padding: 16px 20px 24px;
background: linear-gradient(0deg, rgba(8,8,15,0.98) 0%, rgba(8,8,15,0.9) 70%, transparent 100%);
display: flex; flex-direction: column;
gap: 8px;
}
.story-vn-nameplate {
display: flex; align-items: center; gap: 8px;
margin-bottom: 2px;
animation: vnFadeSlideUp 0.4s ease both;
}
@keyframes vnFadeSlideUp {
from { opacity:0; transform:translateY(8px); }
to   { opacity:1; transform:translateY(0); }
}
.story-vn-name-accent {
width: 4px; height: 18px;
background: var(--gradient-accent);
border-radius: 2px;
flex-shrink: 0;
}
.story-vn-name-text {
font-family: 'Cormorant Garamond', 'Playfair Display', Georgia, serif;
font-size: 1.25rem;
font-weight: 700; font-style: italic;
color: var(--text-bright);
letter-spacing: 0.04em;
text-shadow: 0 0 20px rgba(240,160,80,0.3);
}
.story-vn-bubble {
position: relative;
background: linear-gradient(160deg, rgba(30,20,40,0.95) 0%, rgba(18,14,28,0.95) 100%);
border: 1px solid rgba(232,108,172,0.3);
border-radius: 16px 16px 16px 4px;
padding: 14px 20px;
box-shadow: 0 4px 24px rgba(0,0,0,0.4), 0 0 60px rgba(232,108,172,0.08), inset 0 1px 0 rgba(255,255,255,0.03);
animation: vnBubbleIn 0.5s cubic-bezier(.25,.46,.45,.94) both;
min-height: 48px;
}
@keyframes vnBubbleIn {
from { opacity:0; transform:translateY(12px) scale(0.98); }
to   { opacity:1; transform:translateY(0) scale(1); }
}
.story-vn-bubble::after {
content: '';
position: absolute; inset: 0; border-radius: inherit;
background: repeating-linear-gradient(
0deg, transparent, transparent 2px,
rgba(255,255,255,0.008) 2px, rgba(255,255,255,0.008) 4px
);
pointer-events: none;
}
.story-vn-bubble-tail {
position: absolute;
bottom: -8px; left: 20px;
width: 16px; height: 10px;
background: linear-gradient(160deg, rgba(30,20,40,0.95) 0%, rgba(18,14,28,0.95) 100%);
border-left: 1px solid rgba(232,108,172,0.3);
border-bottom: 1px solid rgba(232,108,172,0.3);
clip-path: polygon(0 0, 100% 0, 50% 100%);
}
.story-vn-bubble.player-bubble {
background: linear-gradient(160deg, rgba(20,25,40,0.95) 0%, rgba(12,16,28,0.95) 100%);
border-color: rgba(100,140,220,0.3);
border-radius: 16px 16px 4px 16px;
box-shadow: 0 4px 24px rgba(0,0,0,0.4), 0 0 40px rgba(100,140,220,0.06);
margin-right: 12px;
}
.story-vn-bubble.player-bubble .story-vn-bubble-tail {
left: auto; right: 20px;
background: linear-gradient(160deg, rgba(20,25,40,0.95) 0%, rgba(12,16,28,0.95) 100%);
border-color: rgba(100,140,220,0.3);
clip-path: polygon(0 0, 100% 0, 50% 100%);
}
.story-vn-bubble.reply-bubble {
border-color: rgba(232,108,172,0.5);
box-shadow: 0 4px 24px rgba(0,0,0,0.4), 0 0 80px rgba(232,108,172,0.12);
animation: vnReplyBubbleIn 0.6s cubic-bezier(.25,.46,.45,.94) 0.15s both;
}
@keyframes vnReplyBubbleIn {
from { opacity:0; transform:translateY(16px) scale(0.95); filter:blur(4px); }
to   { opacity:1; transform:translateY(0) scale(1); filter:blur(0); }
}
.story-vn-text {
color: #e8e0f0;
font-size: 0.95rem;
line-height: 1.7;
letter-spacing: 0.01em;
font-style: italic;
}
.story-vn-typing-cursor {
display: none;
color: var(--accent-soft);
font-weight: 300;
animation: vnCursorBlink 0.7s step-end infinite;
font-style: normal;
}
@keyframes vnCursorBlink {
0%,100% { opacity: 1; }
50%     { opacity: 0; }
}
.story-vn-your-turn {
display: flex; align-items: center; gap: 8px;
margin-top: 4px;
animation: vnFadeSlideUp 0.4s ease both;
}
.story-vn-you-dot {
width: 6px; height: 6px;
background: #648ccc;
border-radius: 50%;
box-shadow: 0 0 8px rgba(100,140,220,0.6);
flex-shrink: 0;
}
.story-vn-you-text {
font-family: 'Cormorant Garamond', 'Playfair Display', Georgia, serif;
font-size: 1.05rem;
font-weight: 600; font-style: italic;
color: #8ab4f8;
letter-spacing: 0.04em;
}
.story-vn-choices {
display: flex; flex-direction: column; gap: 8px;
margin-top: 4px;
}
.story-vn-choice {
background: linear-gradient(135deg, rgba(100,140,220,0.08) 0%, rgba(100,140,220,0.03) 100%);
border: 1px solid rgba(100,140,220,0.2);
border-radius: 12px;
padding: 12px 18px;
color: #c8d8f0;
cursor: pointer;
text-align: left;
font-family: var(--font); font-size: 0.88rem;
line-height: 1.5;
letter-spacing: 0.01em;
transition: all 0.25s cubic-bezier(.4,0,.2,1);
position: relative;
animation: vnChoiceIn 0.4s ease both;
}
.story-vn-choice::before {
content: '▸';
position: absolute; left: 6px;
color: rgba(100,140,220,0.4);
font-size: 0.7rem;
opacity: 0;
transition: opacity 0.2s, left 0.2s;
}
.story-vn-choice:hover {
border-color: rgba(100,140,220,0.5);
background: linear-gradient(135deg, rgba(100,140,220,0.15) 0%, rgba(100,140,220,0.05) 100%);
transform: translateX(4px);
box-shadow: 0 4px 20px rgba(100,140,220,0.12), inset 0 0 0 1px rgba(100,140,220,0.1);
padding-left: 24px;
}
.story-vn-choice:hover::before {
opacity: 1; left: 10px;
}
.story-vn-choice:disabled {
opacity: 0.35;
cursor: default;
transform: none;
filter: grayscale(0.5);
}
@keyframes vnChoiceIn {
from { opacity:0; transform:translateX(-12px); }
to   { opacity:1; transform:translateX(0); }
}
.story-vn-choice:nth-child(1) { animation-delay: 0.05s; }
.story-vn-choice:nth-child(2) { animation-delay: 0.12s; }
.story-vn-choice:nth-child(3) { animation-delay: 0.19s; }
.story-continue-btn {
display: flex; align-items: center; justify-content: center; gap: 8px;
margin: 10px auto 0;
padding: 12px 36px; border-radius: 50px;
font-family: var(--font); font-size: 0.88rem; font-weight: 700;
letter-spacing: 0.08em; text-transform: uppercase;
color: #fff;
background: var(--gradient-accent);
border: none; cursor: pointer;
transition: all 0.3s cubic-bezier(.4,0,.2,1);
box-shadow: 0 4px 20px rgba(224,64,85,0.25);
animation: vnContinueIn 0.5s cubic-bezier(.25,.46,.45,.94) 0.2s both;
}
@keyframes vnContinueIn {
from { opacity:0; transform:translateY(10px) scale(0.9); }
to   { opacity:1; transform:translateY(0) scale(1); }
}
.story-continue-btn:hover {
transform: translateY(-3px);
box-shadow: 0 8px 32px rgba(224,64,85,0.4), 0 0 60px rgba(240,160,80,0.15);
}
.story-continue-btn:active {
transform: translateY(0) scale(0.97);
}
.story-continue-btn svg {
transition: transform 0.2s;
}
.story-continue-btn:hover svg {
transform: translateX(3px);
}
.story-vn-bubble.hygiene-warning {
border-color: rgba(240,160,80,0.4);
background: linear-gradient(160deg, rgba(40,25,15,0.95) 0%, rgba(25,15,10,0.95) 100%);
box-shadow: 0 4px 24px rgba(0,0,0,0.4), 0 0 40px rgba(240,160,80,0.1);
}
.story-vn-bubble.hygiene-warning .story-vn-text {
color: #f0c080;
}
@media (max-width: 600px) {
.story-vn-panel {
padding: 12px 12px 20px;
gap: 6px;
}
.story-vn-text {
font-size: 0.85rem;
}
.story-vn-name-text {
font-size: 1.1rem;
}
.story-vn-bubble {
padding: 10px 14px;
border-radius: 12px 12px 12px 3px;
}
.story-vn-bubble.player-bubble {
border-radius: 12px 12px 3px 12px;
}
.story-vn-choice {
padding: 10px 14px;
font-size: 0.82rem;
}
.story-continue-btn {
padding: 10px 28px;
font-size: 0.8rem;
}
}
.story-video-box {
max-width: 800px; width: 95%;
display: flex; flex-direction: column; align-items: center;
animation: mmFadeIn 0.4s cubic-bezier(.25,.46,.45,.94) both;
}
.story-video-box video {
width: 100%; max-height: 70vh;
border-radius: var(--radius); background: #000;
}
.story-action-btn {
display: block; width: 100%; margin: 8px 0;
padding: 12px 24px; border-radius: 50px;
font-family: var(--font); font-size: 0.88rem; font-weight: 600;
letter-spacing: 0.06em; text-transform: uppercase;
color: #fff; cursor: pointer;
background: var(--glass); border: 1px solid var(--glass-border);
transition: transform 0.2s, border-color 0.2s, background 0.2s;
}
.story-action-btn:hover {
border-color: var(--accent);
background: rgba(224,64,85,0.08);
transform: translateY(-2px);
}
.story-day-text {
font-family: 'Cormorant Garamond', 'Playfair Display', Georgia, serif;
font-size: clamp(3rem, 10vw, 6rem);
font-weight: 700; font-style: italic;
color: var(--text-bright);
text-shadow: 0 0 60px rgba(240,160,80,0.5), 0 0 120px rgba(224,64,85,0.3);
animation: mmFadeIn 0.6s cubic-bezier(.25,.46,.45,.94) both;
}
.story-tag-selector select {
font-family: var(--font);
}